如何正确引用?

如何正确引用?

引用以下内容的正确方法是什么:

[2, and the references therein] [see also 13,15,33]

see also 后面应该加逗号吗?生成逗号的命令是什么?

答案1

包裹natbib使用可选参数重新定义\cite命令,这些参数完全按照您的要求执行。以下是示例:

\documentclass{article}

\usepackage{filecontents}
\usepackage[numbers]{natbib}

\begin{filecontents}{biblio.bib}
@article{Author2012,
    Author = {Author, A},
    Title = {Article},
    Year = {2012}}
\end{filecontents}


\begin{document}

\cite{Author2012}

\cite[e.g.]{Author2012}

\cite[see][]{Author2012}

\cite[and references therein]{Author2012}

\cite[see][and references therein]{Author2012}

\bibliographystyle{plainnat}
\bibliography{biblio}

\end{document}

输出如下所示:

在此处输入图片描述

如果您更喜欢作者年份的引用样式,您可以[numbers]在加载包时删除该选项,并且可以使用选项将方括号替换为圆括号[round]

相关内容