
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}