为什么我的一些文内引用在年份周围有一组额外的括号,而不是等、等?
文档.bib
@article{zi2011quantitative,
title={Quantitative analysis of transient and sustained transforming growth factor-$\beta$ signaling dynamics},
author={Zi, Zhike and Feng, Zipei and Chapnick, Douglas A and Dahl, Markus and Deng, Difan and Klipp, Edda and Moustakas, Aristidis and Liu, Xuedong},
journal={Molecular systems biology},
volume={7},
number={1},
pages={492},
year={2011},
publisher={EMBO Press}
}
@article{MatsuokaModeling,
author = {Matsuoka, Y. and Funahashi, A. and Ghosh, S. and Kitano, H.},
title = {Modeling and simulation using CellDesigner},
journal = {Methods Mol Biol},
volume = {1164},
pages = {121-45},
ISSN = {1064-3745},
DOI = {10.1007/978-1-4939-0805-9_11},
year = {2014},
type = {Journal Article}
}
主文件中的参考屏幕截图
第一个引用示例:
第二个引用示例:
- - - - - - - - 编辑 - - - - - - - - - - - -
我正在使用生物信息学模板
\documentclass{bioinfo}
\usepackage{natbib}
\bibliographystyle{humannat}
\begin{document}
This is the first reference (\cite{zi2011quantitative})
This is the second reference (\cite{MatsuokaModeling})
\medskip
\bibliography{example}
\end{document}
得出的结果为:
奇怪的是,这一次两个参考文献中的年份周围都有多余的括号。 可以将它们删除吗?
答案1
由于您正在使用natbib
引文管理包,因此您应该熟悉\cite
所提供的 -type 宏natbib
:
在 下
natbib
,\cite
是 -- think: “textual” 引用标注的别名\citet
。此命令被编程为创建 形式的引用标注Zi et al. (2011)
。对于“括号内”的引用标注,使用命令
\citep
;它将创建形式为的引用标注(Zi et al., 2011)
。
请查看该natbib
包的用户指南以获取更多引用命令以及自定义文本和括号引用标注外观的方法。