BibTeX, biblatex and biberEmpty Bibliographies

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
franz
Posts: 1
Joined: Wed Dec 11, 2013 12:21 pm

Empty Bibliographies

Post by franz »

Hi everybody,

I'm starting using multibib package and I have a big problem. It does not give any error but the bibliography is empty.

Here is an example.

Code: Select all

\documentclass{article}
\usepackage{multibib}

\newcites{J}{Journal Papers}
\newcites{C}{Conference Papers}

\begin{document}

\section{Publications}
\nociteJ{exart1}
\bibliographystyleJ{plain}
\bibliographyJ{mycit}

\nociteC{exconf1}
\bibliographystyleC{plain}
\bibliographyC{mycit}

\end{document}
And the .bib file:

Code: Select all

@article{exart1,
  author = {Surname, Name},
  title = {Example 1},
  journal = {exjournal},
  year = {2013},
  volume = {1},
  pages = {1--12}
}

@conference{exconf1,
  author = {Surname, Name},
  title = {Example 2 conf},
  booktitle = {Proc. Conf ex},
  year = {2010}
}
The output is a PDF with only the section title.

Note: the following code works perfectly

Code: Select all

\nocite{exart1,exconf1}
\bibliographystyle{plain}
\bibliography{mycit}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

Re: Empty Bibliographies

Post by josephwright »

Did you run BibTeX on the aux file(s)?
Joseph Wright
Post Reply