BibTeX, biblatex and biberAutomatic Bibliography

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Giuseppe
Posts: 1
Joined: Thu Apr 05, 2012 10:03 am

Automatic Bibliography

Post by Giuseppe »

I'm trying to set automatic bibliography in my thesis.
This is my source code:

Code: Select all

 \documentclass[12pt,a4paper]{report}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage[utf8]{inputenc}
\usepackage{footnote}
\usepackage{caption}
\usepackage[italian]{babel}
\usepackage[babel]{csquotes}
\usepackage[style=numeric]{biblatex}

\title{Title}
%\date{29/03/12}

\bibliography{tesi}
%\bibliography{tesi_spec-blx}

\begin{document}
\maketitle
\tableofcontents

\input{Introduzione}
\input{Cennistorici}

\cleardoublepage
%\phantomsection
\addcontentsline{toc}{chapter}{\bibname}
\printbibliography

\end{document}
This is my database:

Code: Select all

%% This BibTeX bibliography file was created using BibDesk.
%% http://bibdesk.sourceforge.net/


%% Created for giuseppe morello at 2012-04-05 08:42:32 +0100 


%% Saved with string encoding Unicode (UTF-8) 



@article{mayor:primoesopianeta,
	Author = {Mayor, Michel and Queloz, Didier},
	Date-Added = {2012-04-05 08:39:23 +0100},
	Date-Modified = {2012-04-05 08:42:12 +0100},
	Journal = {Nature},
	Month = {11},
	Number = {6555},
	Pages = {355-359},
	Rating = {5},
	Read = {1},
	Title = {A Jupiter-mass companion to a solar-type star},
	Volume = {378},
	Year = {1995}}
and this is the subfile "Introduzione.tex" :

Code: Select all

\chapter{Introduzione}
prova\cite{mayor:primoesopianeta}
Why the reference doesn't work and the bibliography doesn't appear?
Last edited by localghost on Thu Apr 05, 2012 10:23 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.

boronian
Posts: 5
Joined: Mon Apr 16, 2012 6:26 pm

Re: Automatic Bibliography

Post by boronian »

Hi Guiseppe,
it works on my system!
Did you bibtex the .aux file? And afterwards tex the main file again...

Best regards.
Post Reply