使用 apacite、latex 将 et al 以 apa 引用格式斜体显示

使用 apacite、latex 将 et al 以 apa 引用格式斜体显示

我目前正在写硕士论文。论文要求所有文内引用多位作者,其他作者应由等人应该用斜体表示。我使用 Jabref 生成了一个参考文献数据库。出于引用目的,我使用了该apacite包。下面是示例.tex文本。

Broadly, there are two frameworks for analyzing repeated measures data: the Single Measures Framework (SMF) and the Repeated Measures Framework (RMF) \cite{Rose2015}.

我期望以下内容

广义上,分析重复测量数据的框架有两种,即单一测量框架(SMF)和重复测量框架(RMF)(Rose等人.,2015年)。

但我明白

广义上,分析重复测量数据的框架有两个,即单一测量框架(SMF)和重复测量框架(RMF)(Rose 等,2015)。

以下是 BibTeX 条目的示例:

@Article{Rose2015,
  author    = {Rose, Charles E and Gardner, Lytt and Craw, Jason and Girde, Sonali and Wawrzyniak, Andrew J and Drainoni, Mari-Lynn and Davila, Jessica and DeHovitz, Jack and Keruly, Jeanne C and Westfall, and others},
  journal   = {PloS one},
  title     = {{A comparison of methods for analyzing viral load data in studies of HIV patients}},
  year      = {2015},
  number    = {6},
  pages     = {e0130090},
  volume    = {10},
  publisher = {Public Library of Science San Francisco, CA USA},
}

任何关于如何解决这个问题的帮助都将不胜感激

答案1

其他字符串的格式由\BOthers宏决定。它需要在文档开头而不是在序言中重新定义,因此我们将新定义包装在\AtBeginDocument

\documentclass{article}
\begin{filecontents}{\jobname.bib}
 @Article{Rose2015, author = {Rose, Charles E and Gardner, Lytt and Craw, Jason and Girde, Sonali and Wawrzyniak, Andrew J and Drainoni, Mari-Lynn and Davila, Jessica and DeHovitz, Jack and Keruly, Jeanne C and Westfall, and others}, journal = {PloS one}, title = {{A comparison of methods for analyzing viral load data in studies of HIV patients}}, year = {2015}, number = {6}, pages = {e0130090}, volume = {10}, publisher = {Public Library of Science San Francisco, CA USA}, }
\end{filecontents}
\usepackage{apacite}
\bibliographystyle{apacite}
\AtBeginDocument{
\renewcommand{\BOthers}{\emph{et al}\hbox{}}
}
\begin{document}

\cite{Rose2015}
\bibliography{\jobname}
\end{document}

代码输出

相关内容