BibTeX, biblatex and biberReferences with DOI field

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
User avatar
sherlock
Posts: 34
Joined: Fri Apr 11, 2008 9:41 am

References with DOI field

Post by sherlock »

Hi all
I would like to have a DOI field printed in my references
(e.g.author,year, title,... DOI:the number).
I have filled the DOI field but it does appear on my references. What can I do?

Thanks in advance

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

References with DOI field

Post by localghost »

sherlock wrote:[...] What can I do? [...]
Get used to providing a minimal working example (MWE) and keep that in mind for future requests.


Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
User avatar
sherlock
Posts: 34
Joined: Fri Apr 11, 2008 9:41 am

References with DOI field

Post by sherlock »

Thanks localghost

My problem is that my references appear like this:
Paeth, H. and Feichter, J. (2006). Greenhouse-gas versus aerosol forcing and African climate response. Climate Dynamics, 26:35–54.

but I want to my references appear like this:
Paeth, H. and Feichter, J. (2006). Greenhouse-gas versus aerosol forcing and African climate response. Climate Dynamics, 26:35–54,doi:10.1007/s00382-005-0070-z.

In my bibtex I already fill the space named DOI with the appropriate number but it does not appear.

thanks
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

References with DOI field

Post by localghost »

You still have to learn how to provide a MWE. As far as I know the natbib package supports DOI entries in BiBTeX databases.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
User avatar
sherlock
Posts: 34
Joined: Fri Apr 11, 2008 9:41 am

References with DOI field

Post by sherlock »

Hi
Im using ubuntu 9.04, Kile Version 2.0.81 and kbibtex 0.2.1.

Code: Select all

\documentclass[a4paper,11pt]{report}
\usepackage{natbib}
\begin{document}
\bibliographystyle{apalike}
\bibliography{references_prop}
\end{document}


this is my reference in kbibtex

Code: Select all

@Article{ christensen2003,
	title = "Climate modelling: Severe summertime flooding in Europe",
	author = "J.H. Christensen and O.B. Christensen",
	journal = "Nature",
	pages = "805--806",
	volume = "421",
	year = "2003",
	url = "http://dx.doi.org/10.1038/421805a",
	doi = "10.1038/421805a"
}
"hope this is MWE"

when I do pdflatex, I dont get the DOI field in my references.
How can I force this field to appear in my references?
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

References with DOI field

Post by localghost »

The bibliography style apalike doesn't support the DOI field for database entries.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
User avatar
sherlock
Posts: 34
Joined: Fri Apr 11, 2008 9:41 am

Re: References with DOI field

Post by sherlock »

Thanks
Post Reply