I am writing a paper that I need to have two bibliographies. For example, a regular references pages and another one for a specific topic.
Something like this:
I already did it with 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}
-- Content of my reference.bib file
@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}}
}
-- Content of my sample-bibliography.bib file
@article{GM05,
author = {Williams, Laurie and Kudrjavets, Gunnar and Nagappan, Nachiappan},
doi = {10.1109/ISSRE.2009.32},
isbn = {9780769538785},
title = {{Example}},
year = {2009}
}
However, the citation is not correct. I want it to be "[1] this is a test [New1]", instead of "[1] this is a test [1]"


...in the document preamble result in an error message. Working means, that the example should be compilable without error message or with only those error messages that are part of the problem. I've commented the line in your example to get a real MWEB. – Schweinebacke Jul 09 '17 at 06:47