진행 중인 Apacite

진행 중인 Apacite

나는 사용하고있다apaciteinproceedings 항목의 형식을 지정하려면 APA 스타일에서 볼륨과 페이지를 다음과 같이 쉼표로 구분해야 합니다.

Author, A. A., & Author, B. B. (1996). Title of journal article: Subtitle of journal article. Title of journal, volume number, first page-last page.

대신, apacite는 볼륨과 페이지를 괄호 안에 넣습니다: IEEE International Conference on Systems, Man and Cybernetics, (Vol. 1, p. 317-322).

apaciteAPA 표준에 따른 형식이라고 생각했는데 이 경우에는 그렇지 않은 것 같습니다. 이 동작을 바꿀 수 있는 방법이 있나요?

답변1

의 기본 동작은 apacite원하는 것입니다. 아래 예를 참조하세요. 코드에 로드한 다른 패키지가 다음과 상호 작용하는 것으로 의심됩니다.apacite 어떤 방식으로든 상호 작용하는 것 같습니다.

그러나, 보지 않고도최소 작업 예(MWE), 문제의 원인을 파악하기 어렵습니다. MWE를 게시해 주시면 답변을 구체화하여 더 많은 도움을 드리겠습니다.


여기에 이미지 설명을 입력하세요


\documentclass{article}
\usepackage{apacite}
\usepackage{filecontents}

\begin{filecontents}{mylib.bib}
@ARTICLE{Vickrey1961,
AUTHOR = {W. Vickrey},
TITLE = {Counterspeculation, auctions and sealed tenders},
JOURNAL = {Journal of Finance},
YEAR = {1961},
volume = {16},
pages = {8--37},
} 
\end{filecontents}

\begin{document}

\citeA{Vickrey1961} showed that incentive compatibility is guaranteed if the auction winner has to pay the second highest price.

\bibliographystyle{apacite}
\bibliography{mylib}

\end{document}

관련 정보