BibTeX, biblatex and biber ⇒ bibtex and .tex.aux
bibtex and .tex.aux
I'm experiencing some trouble upon trying to generate the bibliography in the document I'm writing. First of all, when I built the main file (thesis.tex in my case) the compilation ends with the following message:
"I couldn't open file name 'C:\Thesis\thesis.tex.aux'"
Correct me if I'm wrong but I think this corresponds to the execution of bibtex (TeXnicCenter does the latex&bibtex compiling all at once?). I read somewhere that this could be solved by (a) changing the filename since MS-DOS has problems dealing with too long filenames or (b) changing the thesis.aux file to thesis.tex.aux. Since (a) is not my problem I tried (b) and that seems to do the trick... Then I use Bibtex once, get several warnings saying that my bib entries are not style-defined, and after that I build it twice to obtain the thesis.pdf with the bibliography with the references, but I can't see the references and none \cite{} and \ref{} in the resulting pdf appear (there are ?? symbols instead).
Btw, I'm using TeXnicCenter and Miktex 2.8 on Vista (pdflatex).
Thanks in advance!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
bibtex and .tex.aux
With regard to the lack of style info, are you using a \bibliographystyle{...} command in your document? If you continue to have problems, try posting a minimal working example.
Re: bibtex and .tex.aux
The extension issue is something I double checked long time ago, unfortunately it's not that.
I was given a really complicated template some time ago. Before I post a minimal working example I'll have to read the link you gave me carefully and get rid of those packages I'm not using I'm afraid

\nocite{*}
\bibliographystyle{plain}
\bibliography{ref}
As soon as I have some time I'll try posting it (I'm in bit of a hurry here).
bibtex and .tex.aux
Try saving the following as test.tex:
Code: Select all
\documentclass{article}
\begin{document}
\nocite{*}
\bibliographystyle{plain}
\bibliography{sample}
\end{document}
Code: Select all
@article{ samplearticle,
author = {Jane Doe},
title = {A Nice Title},
journal = {The Journal of Nothing},
volume = {72},
year = {1972},
pages = {1--10}
}
Re: bibtex and .tex.aux
Re: bibtex and .tex.aux
-shell-escape -interaction=nonstopmode -max-print-line=120 "%pm"
and of course bibtex.exe for bibtex
bibtex and .tex.aux
You could try running:
Code: Select all
pdflatex test
bibtex test
pdflatex test
pdflatex test
Re: bibtex and .tex.aux

bibtex and .tex.aux
Code: Select all
pdflatex thesis
bibtex thesis
pdflatex thesis
pdflatex thesis
If so, could you post the thesis.blg (BibTeX log) file that was generated (or should have been generated) when you ran BibTeX? (You may need to rename it, paste it in a code box, or put it in a .zip file to post it here.)
Re: bibtex and .tex.aux
I kind of solved the problem (problems) by getting rid of all those packages I wasn't using and I also stopped using TeXnicCenter. From the DOs prompt things begin to work properly and that's all I need

Thanks for your help!