von RinaEs21 » Fr 20. Jul 2018, 08:57
Hallo Leute,
leider muss ich mich wieder mit einem Problem an euch wenden, dass ich bisher noch nicht gelöst bekommen habe.
Und zwar muss ich für mein Manuscript folgende Zitierregeln einhalten:
- Co-Autoren werden
im Text mit "et al." abgekürzt
- Co-Autoren (bei mehr als 8 Autoren) werden
in der Bibliographie mit "and others." abgekürzt
Die Änderung in der Bibliographie habe ich schon hinbekommen, aber dann ändert er es auch im Text zu "and others."
Hier mein Beispiel dazu:
\documentclass[12pt]{article}
\usepackage
[backend=biber,
bibstyle=authoryear,
citestyle=authoryear,
uniquelist=false,
giveninits=true,
maxbibnames=8,
sorting=nyt,
maxcitenames=2,
minbibnames=3,
mincitenames=1,
date=year
]
{biblatex}
% "et al." durch "and others" ersetzen
\DefineBibliographyStrings{english}{andothers={and others\adddot}}
\addbibresource{bib.bib}
\begin{document}
\textbf{So gibt es mir LaTeX aus:}
\cite{lee2006}
\textbf{Und so soll es aussehen:}
Lee et al. 2006
Die Bibliographie wird allerdings richtig dargestellt.
\printbibliography
\end{document}
Mit der bib.bib:
@Article{lee2006,
author = {Lee, K. and Tong, L. T. and Millero, F. J. and Sabine, C. L. and Dickson, A. G. and Goyet, C. and Park, G.‐H. and Wanninkhof, R. and Feely, R. A. and Key, R. M.},
title = {Global relationships of total alkalinity with salinity and temperature in surface waters of the world's oceans},
journal = {Geophys. Res. Lett.},
year = {2006},
volume = {33},
pages = {L19605}
}
Ich hoffe, dass mir jemand helfen kann. Im Internet bin ich leider nicht fündig geworden.
LG
Rina
Hallo Leute,
leider muss ich mich wieder mit einem Problem an euch wenden, dass ich bisher noch nicht gelöst bekommen habe.
Und zwar muss ich für mein Manuscript folgende Zitierregeln einhalten:
- Co-Autoren werden [b]im Text[/b] mit "et al." abgekürzt
- Co-Autoren (bei mehr als 8 Autoren) werden [b]in der Bibliographie[/b] mit "and others." abgekürzt
Die Änderung in der Bibliographie habe ich schon hinbekommen, aber dann ändert er es auch im Text zu "and others."
Hier mein Beispiel dazu:
[code]
\documentclass[12pt]{article}
\usepackage
[backend=biber,
bibstyle=authoryear,
citestyle=authoryear,
uniquelist=false,
giveninits=true,
maxbibnames=8,
sorting=nyt,
maxcitenames=2,
minbibnames=3,
mincitenames=1,
date=year
]
{biblatex}
% "et al." durch "and others" ersetzen
\DefineBibliographyStrings{english}{andothers={and others\adddot}}
\addbibresource{bib.bib}
\begin{document}
\textbf{So gibt es mir LaTeX aus:}
\cite{lee2006}
\textbf{Und so soll es aussehen:}
Lee et al. 2006
Die Bibliographie wird allerdings richtig dargestellt.
\printbibliography
\end{document}
[/code]
Mit der bib.bib:
[code]
@Article{lee2006,
author = {Lee, K. and Tong, L. T. and Millero, F. J. and Sabine, C. L. and Dickson, A. G. and Goyet, C. and Park, G.‐H. and Wanninkhof, R. and Feely, R. A. and Key, R. M.},
title = {Global relationships of total alkalinity with salinity and temperature in surface waters of the world's oceans},
journal = {Geophys. Res. Lett.},
year = {2006},
volume = {33},
pages = {L19605}
}
[/code]
Ich hoffe, dass mir jemand helfen kann. Im Internet bin ich leider nicht fündig geworden. :-(
LG
Rina