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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

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