I need your help. I am trying to call bibtex and it chooses the wrong path for the aux file. All Files are in the same path.
I have LaTeX_test.tex
Code: Select all
\begin{filecontents*}{testbib.bib}
@book{goossens93,
author = "Michel Goossens and Frank Mittlebach and Alexander Samarin",
title = "The Latex Companion",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
\end{filecontents*}
\documentclass{article}
\begin{document}
As we can see in \cite{goossens93}...
\bibliographystyle{plain}
\bibliography{testbib}
\end{document}
Code: Select all
@book{goossens93,
author = "Michel Goossens and Frank Mittlebach and Alexander Samarin",
title = "The Latex Companion",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
Code: Select all
bibtex LaTeX_test
This is BibTeX, Version 0.99c (MiKTeX 2.8 Beta 5)
The top-level auxiliary file: C:/Dokumen.aux
The style file: plain.bst
Database file #1: testbib.bib
Thanks