BibTeX, biblatex and biber ⇒ Citation Issues
Citation Issues
Seven of my citations are not appearing in the bibliography section although their formatting looks okay to me. I am attaching a photo of one of the citations to make the issue clear. This phenomenon is happening with 7 of the citations in my report in total.
As a solution to this, I tried to reinsert the BibTeX format from the journals and at the very end deleted such citations, but the same thing happened to seven new citations, that were correct before. To clarify, I am using natbib package for citations.
Thank you in advance for your help.
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
Citation Issues
To figure out what's going on you could try something like
Code: Select all
\documentclass{article}
\bibliographystyle{unsrt}
\begin{document}
\nocite{*}
\bibliography{name-of-your-bib-file}
\end{document}

If that's not enough, have a look at your .blg file, that's where BibTeX complains about things it found difficult to swallow.
KR
Rainer