使用 natbib 和 apacite 在 Latex 中编写 APA 第 7 版

使用 natbib 和 apacite 在 Latex 中编写 APA 第 7 版

我将在 Latex 中做以下更改。如您所知,APA 格式要求在括号引用中使用 &,当名称和年份都在括号内时,例如 (Shi & Tsai, 2002)。当它们用于讨论时,请拼写出“and”,例如“....Shi and Tsai (2002) 认为,...”同样,在参考文献中,两位作者之间以及较大组中的最后两位作者之间应使用 &,例如:Staicu, A., Crainiceanu, C., & Carroll, R. (2010)。

为了进行这些更改,我执行了以下命令:

% % References
\renewcommand{\bibname}{REFERENCES}
\bibliographystyle{apacite}
\titlespacing{\chapter}{0pt}{1.7cm}{20pt} 
\setlength{\bibhang}{0.5 in}       
\singlespacing
\bibliography{mybib}
\addcontentsline{toc}{chapter}{REFERENCES}   

但输出结果并非我所期望的那样。输出结果如下:Burnham & AnderSon (2002) 和 Shi & Tsai (2002)... −2× 对数似然 (Burnham & AnderSon, 2002; Shi & Tsai, 2002)... Greven, S., Crainiceanu, C., Caffo, B., & Reich, D. (2010)。纵向函数主成分分析。电子统计杂志,1022-1054。

答案1

我可以提供一段您应该能够编译的小代码。它使用biblatexbiber。如果您的系统配置为这样做,我将编译几次,或者手动进行。看看不同的引用方式如何与多个作者一起工作。

% !TeX TS-program = pdflatex

\documentclass[12pt, a4paper]{article}
\usepackage[english]{babel} 

\usepackage[%
backend=biber,
natbib=true,
style=apa,
]{biblatex} 

\begin{filecontents*}[overwrite]{\jobname35.bib}    
@book{companion,
author       = {Goossens, Michel and Mittelbach, Frank and Samarin, Alexander},
title        = {The \LaTeX\ {C}ompanion},
date         = 1994,
edition      = 1,
publisher    = {Addison-Wesley},
location     = {Reading, Mass.},
pagetotal    = 528,
}

@article{aksin,
author       = {Aks{\i}n, {\"O}zge and T{\"u}rkmen, Hayati and Artok, Levent
    and {\c{C}}etinkaya, Bekir and Ni, Chaoying and
    B{\"u}y{\"u}kg{\"u}ng{\"o}r, Orhan and {\"O}zkal, Erhan},
title        = {Effect of immobilization on catalytic characteristics of
    saturated {Pd-N}-heterocyclic carbenes in {Mizoroki-Heck}
    reactions},
journaltitle = {{S}eminars in {N}uclear {M}edicine},
date         = 2006,
volume       = 691,
number       = 13,
pages        = {3027-3036},
indextitle   = {Effect of immobilization on catalytic characteristics},
}

@article{bertram,
author       = {Bertram, Aaron and Wentworth, Richard},
title        = {Gromov invariants for holomorphic maps on {Riemann} surfaces},
journaltitle = {Revue d'Histoire Eccl{\'e}siastique},
date         = 1996,
volume       = 9,
number       = 2,
pages        = {529-571},
langid       = {english},
langidopts   = {variant=american},
shorttitle   = {Gromov invariants},
 }

\end{filecontents*}

\addbibresource{\jobname35.bib}

\begin{document}    
    
\section*{Introduction}     

Two topics that I wish were taught more often are equivalence testing \citep{aksin} and ROC curves \citep{bertram}. Such methods are well supported by software \citep{aksin, companion}. That said, I confess that the cited software products have nothing to do with the topics that are mentioned.

\citet{bertram} presents some methodology on how to perform tests of equivalence,and also the one--sided versions of these, which are known as non-inferiority or non--superiority tests. On the other hand, if you want to know about receiver operating characteristic (ROC) curves, a good source of information is \citet{companion}.

\printbibliography
\end{document}

萨帕

受到推崇的! https://tex.stackexchange.com/a/527526/161015

相关内容