BibTeX, biblatex and biberBibliography does not appear

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Davidislm
Posts: 13
Joined: Wed Apr 03, 2013 11:15 am

Bibliography does not appear

Post by Davidislm »

Hello !

I'm doing a report with LaTeX (my first one). I use TeXShop (Mac OS). I have found many solutions on forums and so for many problems. But there is a last one which seems to not be solved by my skills. I made a .bib file with Zotero.

But it seems impossible to incorporate it in my Tex file. I mean I thought that it was quite easy and that I just have to put bibliography on the right place like

Code: Select all

\bibliography{bib}
\bibliographystyle{style}
I compile my source file, then run BibTeX and then twice compile my source again. But impossible to get my bibliography. I mean, nothing appears!

Even when I use a basic Tex file like this.

Code: Select all

\documentclass[12pt]{amsart}
\usepackage{geometry} % see geometry.pdf on how to lay out the page. There's lots.
\geometry{a4paper} % or letter or a5paper or ... etc
% \geometry{landscape} % rotated page geometry

% See the ``Article customise'' template for come common customisations

\title{}
\author{}
\date{} % delete this line to display the current date

%%% BEGIN DOCUMENT
\begin{document}

\maketitle
\tableofcontents

\section{}
\subsection{}

\bibliography{bib}
\bibliographystyle{plain}

\end{document}
I'm wondering if it is not a problem with my bibliography database file but I do not know how can I check it.

Thank you.
Attachments
bib.bib
Bibliography File
(42.26 KiB) Downloaded 1168 times
Last edited by localghost on Wed Apr 03, 2013 11:29 am, edited 1 time in total.

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

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Bibliography does not appear

Post by Stefan Kottwitz »

Hi,

welcome to the board!

Did you cite anything? If not, there would not be bibliography entries. You could try

Code: Select all

\nocite{*}
to force all bibliography entries to be printet, no matter if cited or not.

Stefan
LaTeX.org admin
Davidislm
Posts: 13
Joined: Wed Apr 03, 2013 11:15 am

Re: Bibliography does not appear

Post by Davidislm »

Thank you very much, it works fine now !!!!

Have a nice day.. :)
Post Reply