BibTeX, biblatex and biber ⇒ References with DOI field
References with DOI field
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
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
References with DOI field
Get used to providing a minimal working example (MWE) and keep that in mind for future requests.sherlock wrote:[...] What can I do? [...]
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
References with DOI field
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
References with DOI field
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
References with DOI field
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"
}
when I do pdflatex, I dont get the DOI field in my references.
How can I force this field to appear in my references?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
References with DOI field
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10