LaTeX 参照が「and」ではなく「&」として出力されました

LaTeX 参照が「and」ではなく「&」として出力されました

&LaTeXの参照はではなくとして表示されましたand。ファイルを変更しようとしましたが、または をapa.bst検索すると&/& \&

答え1

このapaciteパッケージは、書式設定の特定の部分を変更する際にかなりの柔軟性を提供するので、ドキュメンテーション

括弧内の引用名の間の「and」の形式は、\BBAAマクロによって制御されます。文書の先頭でこれを再定義すると、&を に置き換えることができますand

今後のご質問については、お願いします人々が推測したり、コメントで何度も質問したりする必要がないように、自分が何をしているかを正確に示す最小限のドキュメントを提供します。

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}

@article{ex88,
    Author = {Borman, W. C. and Hanson, M. A. and Oppler, S. H. and Pulakos, E. D. and White, L. A.},
    Journal = {Journal of Applied Psychology},
    Pages = {443--449},
    Title = {Role of Early Supervisory Experience in Supervisor Performance},
    Volume = {78},
    Year = {1993}}

@article{4.05-2,
    Author = {Bretschneider, J. G. and McCoy, N. L.},
    Journal = {Archives of Sexual Behavior},
    Pages = {343--350},
    Title = {Sexual Interest and Behavior in Healthy 80- to 102-Year-Olds},
    Volume = {14},
    Year = {1968}}
\end{filecontents}
\usepackage[natbibapa]{apacite}
\bibliographystyle{apacite}
\AtBeginDocument{\renewcommand{\BBAA}{and}}
\begin{document}

\citep{ex88, 4.05-2}
\bibliography{\jobname}
\end{document}

コードの出力

関連情報