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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- 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