BibTeX, biblatex and biberProblems with BiBTeX and TexMaker

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
whatthebananas
Posts: 2
Joined: Fri Apr 17, 2009 4:45 pm

Problems with BiBTeX and TexMaker

Post by whatthebananas »

I'm having difficulty getting my bibliography to appear in my document. I have a .bib file with entries like:

Code: Select all

@BOOK{dens,
    AUTHOR = {B.W. Silverman},
    TITLE = {Density Estimation for Statistics and Data Analysis},
    PUBLISHER = {Chapman and Hall},
    YEAR = {1998},
    ADDRESS = {London}
    }
and I have:

Code: Select all

\bibliographystyle{plain}
\bibliography{bibfile}
\end{document}


but when I compile it all (F1, F11, F1, F1 or F2, F11, F2 F2) no bibliography shows up, and all my citations just come up as question marks. I've tried reading some of the other topics about problems like this but haven't found anything that helps yet. Help??

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

whatthebananas
Posts: 2
Joined: Fri Apr 17, 2009 4:45 pm

Re: Problems with BiBTeX and TexMaker

Post by whatthebananas »

Also, the log says:

No file finalyearproject.bbl.

and I don't know how to rectify that, but I'm assuming that's where the problem is.
hamza
Posts: 3
Joined: Tue May 05, 2009 12:52 am

Problems with BiBTeX and TexMaker

Post by hamza »

Hello whatthebananas,

I am using Texmaker too and had a similar problem like yours (I was doing pretty much what you did) but after changing my quick build settings to the following it started working:

Code: Select all

latex -interaction=nonstopmode %|latex -interaction=nonstopmode %|bibtex %|latex -interaction=nonstopmode %|latex -interaction=nonstopmode %|yap %.dvi
I had to add a second latex run after the bibtex otherwise it wouldn't work (normally we shouldn't need that, I think)

If it still doesn't work fire up a command prompt and try:

Code: Select all

latex <document>
latex <document>
bibtex <document>
latex <document>
(just as a test) latex <document>
HTH,
Hamza.
Post Reply