为什么 Latex 的引用方式与 Endnote 不同

为什么 Latex 的引用方式与 Endnote 不同

您好,我是 Latex 的新手,请放心使用。我在 Google 上搜索了这个非常简单的东西,但没有找到确切的答案:

我尝试按照在 Endnote 中的方式将参考文献输入到我的文本中:

"Piece of text (Valouev et al., 2011)."

Valouev, A., Johnson, S. M., Boyd, S. D., Smith, C. L., Fire, A. Z. and Sidow, A. (2011) Determinants of nucleosome organization in primary human cells. Nature, 474, 516-20.

然而,无论我在 Latex 中选择哪种引用样式,它都会给出这种格式:

"Piece of text *Valouev et al. (2011)*"
Valouev, A., Johnson, S. M., Boyd, S. D., Smith, C. L., Fire, A. Z. and Sidow, A. (2011) Determinants of nucleosome organization in primary human cells. Nature, 474, 516-20.

请注意作者姓名在括号外面......

我的Latex实现如下:

\documentclass{article}
\usepackage{natbib}
\bibliographystyle{apa}
......
\bibliography{reports}
\end{document}

有人能告诉我如何按照 Endnote 的方式让文本看起来更干净吗?

答案1

natbib包定义了\citet文内引用和\citep括号引用的命令。

在此处输入图片描述

\documentclass{article}
\usepackage{natbib}
\begin{document}
\citet{article-full} said so.

This is so \citep{article-full}


\bibliographystyle{apa}
\bibliography{xampl}
\end{document}

相关内容