TroubleshootingMay 1, 20266 min read

Why Does My BibTeX Not Produce a Bibliography?

BibTeX compiled but no bibliography appeared? Here are the 8 most common causes and how to fix each one.

bibtexbibliographytroubleshootingcitations

You ran BibTeX, got no errors, but your PDF has no bibliography. This is maddeningly common. Here are the causes, in order of likelihood.

1. You didn't compile enough times

LaTeX needs 4 passes: pdflatex → bibtex → pdflatex → pdflatex. If you only ran pdflatex once, BibTeX never ran.

2. Wrong .bib filename

% ❌ Don't include the .bib extension with BibTeX
\\bibliography{references.bib}

% ✅ Correct
\\bibliography{references}

3. Missing \\bibliographystyle

BibTeX silently does nothing without it:

\\bibliographystyle{plain}  % REQUIRED for BibTeX
\\bibliography{references}

4. No \\cite commands in your document

BibTeX only includes entries that are cited. Use \\nocite{*} to include all entries without citing them.

5. .bib file has syntax errors

A single missing comma or brace breaks the entire bibliography silently. Check your .blg log file for errors.

6. Citation key mismatch

Keys are case-sensitive: \\cite{Smith2024} won't match @article{smith2024, ...}.

7. Corrupted aux files

Delete all .aux, .bbl, .blg files and recompile from scratch.

8. Mixing BibTeX and biblatex

If you have \\usepackage{biblatex}, you need biber not bibtex, and \\printbibliography not \\bibliography{}. See our natbib vs biblatex guide.

Skip the debugging: Bibby AI handles compilation and bibliography generation automatically. Try free.

Try a LaTeX Editor Built for Researchers

AI-powered writing, smart citations, no compile timeouts. Join 5,000+ researchers using Bibby AI.

Start Writing Free
Why Does My BibTeX Not Produce a Bibliography? | Bibby AI Blog