Zitat und Text mit natbib mischen

Zitat und Text mit natbib mischen

Ich habe diese .tex-Datei:

\RequirePackage{filecontents}
\begin{filecontents}{refs.bib}
@article{CostantiniMoller2008,
  title={Carotenoids are minor antioxidants for birds},
  author={Costantini, D and M{\o}ller, AP},
  journal={Functional Ecology},
  volume={22},
  number={2},
  pages={367--370},
  year={2008},
  publisher={Wiley Online Library}
}
\end{filecontents}


\documentclass[a4paper,11pt]{article}


\usepackage[comma, sort&compress]{natbib} 
\setlength{\bibsep}{0pt plus 0.3ex}


\begin{document}
\title{}
\author{me}
\date{\today}
\maketitle

\section{Header}

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum \citep{CostantiniMoller2008, pers.obs.}


\bibliographystyle{agsm}

\bibliography{refs}


\end{document}

Ich muss CostantiniMoller2008 und pers.obs in derselben Quelle zitieren. Wenn ich versuche, die Datei so zu analysieren, wie sie ist, wird pers.obs nur als ? angezeigt. Wie kann ich sowohl CostantiniMoller2008 als auch pers.obs zitieren?

Antwort1

Die Methode, die Sie wählen, hängt unter anderem davon ab, ob Sie zwischen dem Autor bzw. den Autoren und dem Jahr ein Komma setzen möchten oder nicht. So generieren Sie eine ZitationsangabeohneVerwenden Sie anstelle des Kommas eine Kombination aus \citetextund \citealt. Für eine Zitationmitdas Komma, verwenden Sie entweder \citepmit einem einzelnen optionalen Argument oder eine Kombination aus \citetextund \citealp.

Bildbeschreibung hier eingeben

\RequirePackage{filecontents}
\begin{filecontents}{refs.bib}
@article{CostantiniMoller2008,
  title={Carotenoids are minor antioxidants for birds},
  author={Costantini, D. and M{\o}ller, A. P.},
  journal={Functional Ecology},
  volume={22},
  number={2},
  pages={367--370},
  year={2008},
  publisher={Wiley Online Library}
}
\end{filecontents}
\documentclass[a4paper,11pt]{article}

\usepackage[comma, sort&compress]{natbib} 
\setlength{\bibsep}{0pt plus 0.3ex}
\bibliographystyle{plainnat} % choose the appropriate bib style here
\setlength\parindent{0pt} % just for this example
\begin{document}
\citetext{\citealt[pers.~obs.]{CostantiniMoller2008}} 

\citep[pers.~obs.]{CostantiniMoller2008}

or also:

\citetext{\citealp[pers.~obs.]{CostantiniMoller2008}} 

\bibliography{refs}
\end{document}

verwandte Informationen