GeneralProblem with Compiling Bibliographys

General information and discussion about TeXnicCenter
Post Reply
Kiltman67
Posts: 7
Joined: Thu Dec 04, 2008 7:46 pm

Problem with Compiling Bibliographys

Post by Kiltman67 »

I'm a new convert to LaTeX and was running it using Emacs with TeTex on Ubuntu, but since I use XP most of the time I was tempted by TeXnicCenter. Been trying to test how to do bibliographys and I keep getting errors, even though it worked perfectly with Emacs.

Code: Select all

\documentclass[a4paper,12pt]{article}
\usepackage{apacite}
\usepackage{natbib}
\begin{document}
Sometimes people say Uh, othertimes they say Umm \citep{clark2002uua}
\bibliographystyle{apacite}
\bibliography{test}
\end{document}
And there's a corresponding test.bib in the same folder

Code: Select all

@article{clark2002uua,
  title={{Using uh and um in spontaneous speaking}},
  author={Clark, H.H. and Fox Tree, J.E.},
  journal={Cognition},
  volume={84},
  number={1},
  pages={73--111},
  year={2002},
  publisher={Elsevier}
}
As I said, this compiles perfectly with Emacs, but not with TeXnicCenter, the .log is attached.
Attachments
test.log
(2.76 KiB) Downloaded 343 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Problem with Compiling Bibliographys

Post by localghost »

This is not an issue related to TeXnicCenter but to MiKTeX. The log file says it clearly.

Code: Select all

Package apacite Warning: Language definition file english.apc not found.


Package natbib Warning: Citation `clark2002uua' on page 1 undefined on input li
ne 5.

No file test.bbl.

Package natbib Warning: There were undefined citations.
A look at the apacite package with the MiKTeX Package Manager reveals that the missing file is not installed. It is not delivered with the MikTeX version of the package. I uploaded it to the forum server and attached it as ZIP archive. Copy the unpacked file to the MiKTeX tree.

Code: Select all

C:\Program Files\MiKTeX 2.7\tex\latex\apacite
Afterwards you have to refresh the file name database via MiKTeX Settings.


Best regards and welcome to the board
Thorsten¹
Attachments
The apacite package as provided by MiKTeX.
The apacite package as provided by MiKTeX.
apacite.png (12.27 KiB) Viewed 4038 times
english.zip
Language file for the apacite package.
(1.86 KiB) Downloaded 322 times
Kiltman67
Posts: 7
Joined: Thu Dec 04, 2008 7:46 pm

Re: Problem with Compiling Bibliographys

Post by Kiltman67 »

Thanks for the help :)
Post Reply