BibTeX, biblatex and biberBibtex problems not running

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
peaches20
Posts: 9
Joined: Thu Oct 25, 2012 4:28 pm

Bibtex problems not running

Post by peaches20 »

Hi,

This is my first time with bibtex and I am having problems. I am using linux with \documentclass. I am not quite sure what the sequence of order is for running.

I have the setup

\thebibliography{plain}
\bibliography{name.bib}


and am using pdflatex. Once I run pdflatex what is the sequence for incorporating the bibtex file?

Thanks,
Peaches

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

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Bibtex problems not running

Post by Johannes_B »

If you main document is called main.tex, you have to run bibtex main in your working directory.

You also have to get rid of the file extension in the \bibliography line.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

Bibtex problems not running

Post by Stefan Kottwitz »

Hi Peaches!

Do you use a LaTeX editor? Which one?

If you compile at the command prompt, that is, in a terminal window, it goes like

pdflatex main
bibtex main
pdflatex main
pdflatex main


These several runs to resolve all cross-references with page numbers.

Stefan
LaTeX.org admin
Post Reply