BibTeX, biblatex and biber ⇒ Strange Depiction of References
Strange Depiction of References
I am using TeXnicCenter, and I have a very strange problem.
Every time I convert the same source file to the PDF, the references are represented in a different (but a wrong!) way. What could be a reason?
Thank you 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
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Strange Depiction of References
welcome to the board!
Please tell us in more detail what is strange and what do you mean by a different and wrong way. Wrong numbers, wrong font or appearance? Do you get any warning or error messages?
The best would be if you would post a reduced compilable example (

Stefan
Strange Depiction of References
Code: Select all
\documentclass[a4paper,12pt]{article}
\usepackage{natbib}
\begin{document}
....
\citet{nurmi1981problem} ....
\bibliographystyle{apalike}
\bibliography{PR}
\end{document}
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Strange Depiction of References
That's normal for a first run. In a first run the references are unknown. Then if BibTeX is run, and LaTeX again, references can be resolved and are shown.artyomje wrote:On the output, sometimes I see "?" in the text instead of citation, but there is a list of bibliography in the end .
Could it be that your editor removes .aux or .bib/.bst files or generally auxiliary files after compiling? Some editors may have such a setting. Check if those files are there. Perhaps convert manually instead of using the editor.artyomje wrote:But when I convert the same file once again, I can see citation correct (in the Author(year) format), but no references list below...
Stefan
Re: Strange Depiction of References
those files are on their place..
Re: Strange Depiction of References
But when I use regular \cite command instead of \citet or \citep, everythin works good! So, I guess, my .bib file is correct, and so is editor. Why should natbib package change?
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Strange Depiction of References
natbib
and apalike
are compatible. The small code piece you showed above should be ok. Perhaps show a complete example with the problem, a hacked down 
Stefan
Re: Strange Depiction of References
My .bib was built automatically by exporting from Google Scholar. In their bib. item form the field 'author' comes after the field 'title', and that makes problem when natbib is used.