Estou escrevendo um artigo que preciso ter duas bibliografias. Por exemplo, uma página de referência regular e outra para um tópico específico. Algo assim:
Já fiz isso com 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}
-- Conteúdo do meu arquivo 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}}
}
-- Conteúdo do meu arquivo sample-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}
}
No entanto, a citação não está correta. Eu quero que seja"[1] isto é um teste [Novo1]", em vez de "[1] isso é um teste [1]"
Responder1
Parece que o problema não está em acmart
, mas sim em natbib
. Aqui está o seu exemplo com 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}
Como solução alternativa, eu usaria numeração consecutiva:
\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}