引用以下内容的正确方法是什么:
[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]
。