Eine Variante vondiese FrageDadurch wird die zusätzliche Anforderung hinzugefügt, dass die Lösung mit dem doi
Paket funktioniert.
Wie zwinge ich Bibtex, das Wort „DOI“ unten in Großbuchstaben zu formatieren?
\documentclass{article}
\usepackage{natbib}
\usepackage{doi} % hyperlink URLs
\begin{filecontents*}{\jobname.bib}
@article{milner92,
author = {Robin Milner and Joachim Parrow and David Walker},
title = {A Calculus of Mobile Processes, {I} and {II}},
journal = {Inf. Comput.},
volume = {100},
number = {1},
pages = {1--77},
year = {1992},
doi = {10.1016/0890-5401(92)90009-5},
}
\end{filecontents*}
\begin{document}
\cite{milner92}
\bibliographystyle{plainnat}
\bibliography{\jobname}
\end{document}
Antwort1
In der Dokumentation heißt es:
Das Format des DOI kann durch Neudefinition des Befehls \doitext gesteuert werden.
\documentclass{article}
\usepackage{natbib}
\usepackage{doi} % hyperlink URLs
\renewcommand{\doitext}{DOI:~}
\begin{filecontents*}{\jobname.bib}
@article{milner92,
author = {Robin Milner and Joachim Parrow and David Walker},
title = {A Calculus of Mobile Processes, {I} and {II}},
journal = {Inf. Comput.},
volume = {100},
number = {1},
pages = {1--77},
year = {1992},
doi = {10.1016/0890-5401(92)90009-5},
}
\end{filecontents*}
\begin{document}
\cite{milner92}
\bibliographystyle{plainnat}
\bibliography{\jobname}
\end{document}