Ich schreibe eine Arbeit, für die ich zwei Bibliographien benötige. Zum Beispiel eine normale Literaturliste und eine weitere zu einem bestimmten Thema. Etwa so:
Ich habe es bereits mit Multibib gemacht.
\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}
-- Inhalt meiner Datei 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}}
}
-- Inhalt meiner Datei 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}
}
Das Zitat ist jedoch nicht korrekt. Ich möchte, dass es heißt:[1] Dies ist ein Test [New1]", anstatt "[1] Dies ist ein Test [1]"
Antwort1
Es sieht so aus, als ob das Problem nicht bei acmart
, sondern eher bei liegt natbib
. Hier ist Ihr Beispiel mit 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}
Als Workaround würde ich stattdessen eine fortlaufende Nummerierung verwenden:
\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}