答案1
在使用apalike
参考书目样式时,有两个建议可以抑制在每个参考书目条目开头的方括号中打印的材料:
加载纳特比布引文和参考书目管理包。要创建括号式引文标注,请使用
\citep
而不是。如果您希望在引文标注中使用方括号,请\cite
提供 选项;如果您希望在引文标注中使用圆括号,请提供 选项。square
round
加载阿帕莱克引文管理包。此包仅支持
\cite
指令,它将使用圆括号创建括号式引文调用。可以在\cite
指令中提供多个参数。
\documentclass{article}
\usepackage{filecontents}
%% bibtex entry information obtained from http://www.sciencedirect.com/science/article/pii/S0019103502969629
\begin{filecontents}{mybib.bib}
@article{Barbara2002161,
author = "John M. Barbara and Larry W. Esposito",
title = "Moonlet Collisions and the Effects of Tidally Modified Accretion in {Saturn's} {F}~Ring",
journal = "Icarus",
volume = "160",
number = "1",
pages = "161-171",
year = "2002",
issn = "0019-1035",
doi = "http://dx.doi.org/10.1006/icar.2002.6962",
url = "http://www.sciencedirect.com/science/article/pii/S0019103502969629",
}
\end{filecontents}
\bibliographystyle{apalike}
\usepackage[square]{natbib} % <- new
\begin{document}
\noindent
Here I cite the paper \citep{Barbara2002161}.
\bibliography{mybib}
\end{document}