BibTeX, biblatex and biberCitation Issues

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
sonjoy007
Posts: 1
Joined: Thu Nov 02, 2023 8:33 pm

Citation Issues

Post by sonjoy007 »

I am facing the following bizarre problem of which I am seeking assistance with:

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.
Issue.png
Issue.png (382.23 KiB) Viewed 19217 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX books
rais
Posts: 419
Joined: Sun Nov 16, 2014 8:51 pm

Citation Issues

Post by rais »

I doubt entry RN125 is the same as entry [125] in the bibliography, not even their years match.
To figure out what's going on you could try something like

Code: Select all

Code, edit and compile here:
\documentclass{article}
\bibliographystyle{unsrt}
\begin{document}
\nocite{*}
\bibliography{name-of-your-bib-file}
\end{document}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
After processing this through LaTeX, BibTeX, LaTeX, LaTeX you should get the bibliography--even if it looks differently from your desired output---with the same order in which the entries appear in your bib file. That might be a bit easier to follow. ;)

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
Post Reply