Envornment: macOS 10.13.4, Full 2018 MacTeX distro, TeXworks v0.6.2.
My MWE
% arara: pdflatex
% arara: bibtex: { files: [ mbib, web ] }
% arara: pdflatex
% arara: pdflatex
\RequirePackage{filecontents}
\begin{filecontents}{biblio.bib}
@incollection{Akallabeth,
author = "Tolkien, John Ronald Reuel",
title = "Akallabeth---The Downfall of Numenor",
year = 2014,
editor = "Tolkien, Christopher",
booktitle = "The Silmarillion",
publisher = "Mariner Books",
address = "New York, USA",
tags = "MasterThesis",
}
\end{filecontents}
\begin{filecontents}{web.bib}
@misc{wikiicd10,
author = "Wikipedia",
title = "{ICD-10}",
year = 2015,
url = "https://en.wikipedia.org/wiki/ICD-10",
tags = "master",
}
\end{filecontents}
\documentclass[a4paper,12pt,titlepage,twoside,openright,fleqn]{book}
\usepackage[italian,english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{url}
\usepackage[colorlinks,allcolors=blue]{hyperref}
\usepackage{bookmark}
\usepackage[numbers,square,sort&compress]{natbib}
\usepackage[resetlabels]{multibib}
\newcites{web}{Useful websites}
\begin{document}
\tableofcontents
\bigskip
\hrule
\bigskip\noindent
% Generate two citation callouts
\citet{Akallabeth},
\citeweb{wikiicd10}
\cleardoublepage
\addcontentsline{toc}{chapter}{\bibname}
\bibliographystyle{plainnat}
\bibliography{biblio}
\cleardoublepage
\addcontentsline{toc}{chapter}{Useful websites}
\bibliographystyleweb{unsrtnat}
\bibliographyweb{web}
\end{document}
This works, except that I want the second biblio (which is all Web URLs) to use a letter prefix. IOW, a rendered citation like "...as described [W1]..." with the linked reference numbered 'W1' instead of the more normal '1'.
I've looked at Natbib-Multibib problem with prefix labels and Citation is not using the custom prefix defined by multibib, both of which make me think this may not be possible. I'm actually using ACMstyling (via ACM-Reference-Format.bst) although the linked article make me think this is a natbib/multibib issues.
I'm using arara to compile multiple bibtex passes via TexWorks as each call needs a different target bib file.
Now I've got arara working, I'm happy to try using biblatex/biber if it will give me the output required, although I guess I'll have to write all the styles myself as ACM's style docs aren't Biblatex compatible yet (as at June 2018).
