I am looking for a way to use multibib and external bibliography(ies) in my document but use number labels for my references and letter labels for my enclosures. For example, I want to write: Reference (1) and Enclosure (a). I have more than 26 enclosures, so they'd have to wrap around and start over again with enclosure (aa), (bb) etc.
I have found this example on Stack Exchange that talks about how to change references to letters. This is what I'd like to do, but not exactly how I want to execute it.
Here's an example code:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[resetlabels]{multibib}
\newcites{enc}{Enclosures}
\newcites{ref}{References}
\begin{document}
Here I'd like to cite reference \citeref{number1} and \citeref{number2}, and enclosures \citeenc{letter1} and \citeenc{letter2}.
\bibliographystyleenc{plain}
\bibliographyenc{enclosures}
\bibliographystyleref{ieeetr}
\bibliographyref{references}
\end{document}
My references bibliography looks like this:
@Article{number1,
author = {number author 1},
title = {number title 1},
year = {2023},
month = {January}
}
@Article{number2,
author = {number author 2},
title = {number title 2},
year = {2023},
month = {January}
}
And my enclosures bibliography (the one I want to have alphabetic letters as my callouts) looks like this:
\makeatletter
\def\@bibitem#1{\item\if@filesw \immediate\write\@auxout
{\string\bibcite{#1}{\alphalph{\value{\@listctr}}}}\fi\ignorespaces}
\def\@biblabel#1{[\alphalph{#1}]}
\makeatother
@Article{letter1,
author = {letter author 1},
title = {Letter title 1},
year = {2023},
month = {January}
}
@Article{letter2,
author = {letter author 2},
title = {Letter title 2},
year = {2023},
month = {January}
}
Based on the answer given in this example. Basically, I want to do exactly what's in this example, but presented in the way I have shown here. Andrew Swann indicates in his reply in this example that it can be done with the multibib environment and external bibliography, but I can't figure out how to do it. I'm still in the learning curve with LaTeX, any help is appreciated.