인용이 multibib에서 정의한 맞춤 접두사를 사용하지 않습니다.

인용이 multibib에서 정의한 맞춤 접두사를 사용하지 않습니다.

나는 두 개의 참고문헌이 필요한 논문을 쓰고 있습니다. 예를 들어 일반 참조 페이지와 특정 주제에 대한 또 다른 참조 페이지가 있습니다. 이 같은:여기에 이미지 설명을 입력하세요

이미 멀티빕으로 해봤거든요.

\documentclass[sigconf]{acmart}

\usepackage[resetlabels,labeled]{multibib}
%... 
\newcites{New}{The other list}
\begin{document}
%... 

\section{test}
\citep{GM05} this is a test \citeNew{Williams2009} 
% and this as well \citeNew{Gren}

\bibliographystyle{ACM-Reference-Format}
\bibliography{sample-bibliography}

\bibliographystyleNew{plain}
\bibliographyNew{references}

\end{document}

-- 내 reference.bib 파일의 내용

@article{Williams2009,
author = {Williams, Laurie and Kudrjavets, Gunnar and Nagappan, Nachiappan},
doi = {10.1109/ISSRE.2009.32},
isbn = {9780769538785},
title = {{On the Effectiveness of Unit Test Automation at Microsoft 1}},
year = {2009}
}

@article{Gren,
author = {Gren, Lucas and Antinyan, Vard},
title = {{On the Relation Between Unit Testing and Code Quality}}
}

-- 내 샘플-bibliography.bib 파일의 내용

@article{GM05,
author = {Williams, Laurie and Kudrjavets, Gunnar and Nagappan, Nachiappan},
doi = {10.1109/ISSRE.2009.32},
isbn = {9780769538785},
title = {{Example}},
year = {2009}
}

그러나 인용이 올바르지 않습니다. 나는 그것을 원한다 "[1] 이건 테스트입니다 [신규1]", 대신에 "[1] 테스트입니다 [1]"

답변1

acmart문제는 에 있는 것이 아니라 에 있는 것 같습니다 natbib. 다음은 다음과 같은 예입니다 article.

%\documentclass[sigconf]{acmart}
\documentclass{article}
\usepackage{natbib,url}
\setcitestyle{numbers,square}
\usepackage[resetlabels,labeled]{multibib}
%... 
\newcites{New}{The other list}
\begin{document}
%... 

\section{test}
\citep{GM05} this is a test \citeNew{Williams2009} 
% and this as well \citeNew{Gren}

\bibliographystyle{plainnat}
\bibliography{sample-bibliography}

\bibliographystyleNew{plainnat}
\bibliographyNew{references}

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

해결 방법으로 대신 연속 번호 매기기를 사용합니다.

\documentclass[sigconf]{acmart}
\usepackage{multibib}
%... 
\newcites{New}{The other list}
\begin{document}
%... 

\section{test}
\citep{GM05} this is a test \citeNew{Williams2009} 
% and this as well \citeNew{Gren}

\bibliographystyle{ACM-Reference-Format}
\bibliography{sample-bibliography}

\bibliographystyleNew{ACM-Reference-Format}
\bibliographyNew{references}

\end{document}

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

관련 정보