BibTeX, biblatex and biberReferences Section is not appearing

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
viniciusfcramos
Posts: 2
Joined: Tue Mar 26, 2013 1:14 pm

References Section is not appearing

Post by viniciusfcramos »

Hi!

I am using Springer LLNCS class. My problem is that my references section do not appear and my \cite{goossens93} looks like this "Goossens [?]".

This is my simple document:

Code: Select all

\documentclass{llncs}

\title{First example}

\begin{document}
\maketitle

\begin{abstract}
Abstract Content
\end{abstract}

\section{Introduction}
At the beginning of time, Goossens\cite{goossens93} appeared!

\bibliographystyle{splncs03}
\bibliography{references}
\end{document}
That is my references.bib file:

Code: Select all

@book{goossens93,
    author    = "Michel Goossens and Frank Mittelbach and Alexander Samarin",
    title     = "The LaTeX Companion",
    year      = "1993",
    publisher = "Addison-Wesley",
    address   = "Reading, Massachusetts"
}
I am using TeXmaker 3.2 in Ubuntu 12.04.

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

Member
Posts: 1
Joined: Tue Aug 21, 2012 10:35 am

References Section is not appearing

Post by Member »

Hi,

welcome to the forum!

Did you run BibTeX? This is an external tool. Some editors are capable of automatically running it, but you could also do it at the command prompt, such as in a terminal window:

Code: Select all

bibtex filename
Then run LaTeX on it again (twice, to get the references right).


Stefan
viniciusfcramos
Posts: 2
Joined: Tue Mar 26, 2013 1:14 pm

References Section is not appearing

Post by viniciusfcramos »

I cannot run bibtex, it says this.
I couldn't open file name `references.aux'"
When I first run "latex paper.tex" it does not give any error, only awarning:
Citation 'goossens93' on page 1 undefined.
It seems that the latex do not compile the .bib file... any help?

Thanks!


Update:

OK, my fault.
I have to run bibtex for "paper.aux" file and not on "references.bib"

Now, it is working!
Thank you very much!
Post Reply