LaTeX 參考以「&」而非「and」的形式出現

LaTeX 參考以「&」而非「and」的形式出現

LaTeX 參考&and.我試圖修改該apa.bst文件,但是當我搜索&/& \&

答案1

apacite包在修改格式的某些部分方面提供了相當大的靈活性,因此閱讀其內容會很有用文件

括號引用中名稱之間的“和”格式由\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}

程式碼的輸出

相關內容