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 337 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
localghost
Site Moderator
Posts: 9201
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 3892 times
english.zip
Language file for the apacite package.
(1.86 KiB) Downloaded 317 times
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
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