BibTeX, biblatex and biberReceiving an empty title warning

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
cbkschroeder
Posts: 55
Joined: Sun Nov 09, 2008 7:48 pm

Receiving an empty title warning

Post by cbkschroeder »

Hello,

Thanks for reading my post.

I'm trying to determine why bibtex keeps giving the the error
Warning--empty title in this
when my latex file is:

Code: Select all

\documentclass{article}

\usepackage[sort&compress]{natbib}

\citestyle{nature}
\bibliographystyle{nature}

\begin{document}

test\citealp{this}.

\bibliography{test_bib}

\end{document}
and my bibtex file is

Code: Select all

@ARTICLE{this,
    AUTHOR="Name",
    JOURNAL="Journal of Stuff",
    PAGES="1--2",
    TITLE={Big Title},
    VOLUME=1,
    YEAR=1900
    }
The output is attached.

Any help which could be provided would be appreciated.

Thanks,

Christian
Attachments
test.pdf
(9.53 KiB) Downloaded 481 times
Last edited by cbkschroeder on Wed Sep 15, 2010 8:30 pm, 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.

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Receiving an empty title warning

Post by frabjous »

I don't know, but the problem seems to result from the line:

Code: Select all

\bibliographystyle{nature}
line. Using a different style file does not seem to generate the problem.

I noticed that nature.bst is only listed on CTAN as a part of a listing of obsolete files. Is there some reason you're still using it? Try changing it to plainnat or something else.
cbkschroeder
Posts: 55
Joined: Sun Nov 09, 2008 7:48 pm

Re: Receiving an empty title warning

Post by cbkschroeder »

I agree that it's clearly related to the nature file. I am using it because it's indicated in the natbib documentation which, I assume, must mean it can't be *that* horrible - can it? :roll: . I'm using that file versus others because I'm trying to compile a paper for one of the nature journals and I will be required to adhere to their specific format. I'm not otherwise attached to it. Any other ideas as to how I might successfully achieve that with a more "modern" (read: less obsolete) means?

Thanks for your time!
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Receiving an empty title warning

Post by gmedina »

Hi,

you can use biblatex and its nature style. A little example:

Code: Select all

\documentclass{article}
\usepackage[style=nature,autocite=superscript]{biblatex}% biblatex using nature style

% your bibliographical database
\bibliography{biblio}

\begin{document}

Some text\autocite{goossens93}

% to list all the entries of the .bib database
\nocite{*}

% the command that actually prints the bibliography
\printbibliography

\end{document}
The database biblio.bib:

Code: Select all

@book{goossens93,
	author = "Michel Goossens and Frank Mittlebach and Alexander Samarin",
	title = "The Latex Companion A",
	year = "1993",
	publisher = "Addison-Wesley",
	address = "Reading, Massachusetts"

}

@article{greenwade93, 
	author = "George D. Greenwade",
	title = "The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})",
	year = "1993",
	journal = "TUGBoat",
	volume = "14",
	number = "3",
	pages = "342--351"
}

@book{knuth79,
	author = "Donald E. Knuth",
	title = "Tex and Metafont, New Directions in Typesetting",
	year = {1979{(}1950{)}},
	publisher = "American Mathematical Society and Digital Press",
	address = "Stanford"
}

@book{lamport94,
	author = "Leslie Lamport",
	title = "Latex: A Document Preparation System",
	year = "1994",
	edition = "Second",
	publisher = "Addison-Wesley",
	address = "Reading, Massachusetts"
}

@misc{patashnik88,
	author = "Oren Patashnik",
	title = "{B}ib{T}e{X}ing.  Documentation for General {B}ib{T}e{X} users",
	year = "1988",
	howpublished = "Electronic document accompanying BibTeX
distribution"
}

@techreport{rahtz89,
	author = "Sebastian Rahtz",
	title = "A Survey of {T}ex and graphics",
	year = "1989",
	institution = "Department of Electronics and Computer Science",
	address = "University of Southampton, UK",
	number = "CSTR 89-7"
}
The compilation procedure:

run (pdf)latex, then bibtex, and then (pdf)latex once more.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
cbkschroeder
Posts: 55
Joined: Sun Nov 09, 2008 7:48 pm

Re: Receiving an empty title warning

Post by cbkschroeder »

gmedina,

Thank you kindly for your suggestion; it works beautifully and you've helped me out a lot!

Thanks again!

Christian
Post Reply