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 1175 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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10359
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