如果我使用\citep{}
我得到
(Hugh 等人,2009)
。但是,我需要
(休·格拉泽、阿法拉兹·贾夫里和伊恩·米勒德,2009 年)
\begin{document}
\usepackage{bibentry}
\end{document}
我不知道如何执行比本特利包裹。
答案1
biblatex
使用\parencite
而不是\citep
。
% arara: pdflatex
% arara: biber
% arara: pdflatex
% arara: pdflatex
\documentclass{article}
\pagestyle{empty}% for cropping
\begin{filecontents*}{\jobname.bib}
@inproceedings{eps267587,
booktitle = {WWW2009 Workshop: Linked Data on the Web (LDOW2009)},
month = {April},
title = {Managing Co-reference on the Semantic Web},
author = {Hugh Glaser and Afraz Jaffri and Ian Millard},
year = {2009},
note = { Event Dates: 20 April 2009},
keywords = {Co-reference, Linked Data, Semantic Web},
url = {http://eprints.soton.ac.uk/267587/}
}
\end{filecontents*}
\usepackage[style=authoryear]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\parencite{eps267587}
\printbibliography
\end{document}
natbib
根据 Mico 的评论使用\citep*
而不是\citep
。
% arara: pdflatex
% arara: bibtex
% arara: pdflatex
% arara: pdflatex
\documentclass{article}
\pagestyle{empty}% for cropping
\begin{filecontents*}{\jobname.bib}
@inproceedings{eps267587,
booktitle = {WWW2009 Workshop: Linked Data on the Web (LDOW2009)},
month = {April},
title = {Managing Co-reference on the Semantic Web},
author = {Hugh Glaser and Afraz Jaffri and Ian Millard},
year = {2009},
note = { Event Dates: 20 April 2009},
keywords = {Co-reference, Linked Data, Semantic Web},
url = {http://eprints.soton.ac.uk/267587/}
}
\end{filecontents*}
\usepackage{natbib}
\begin{document}
\citep*{eps267587}
\bibliographystyle{plainnat}
\bibliography{\jobname}
\end{document}