I am using multibib with two bib-files. For the first one I use a numeric citation style. But for the second one I want to have [A1, A2, ...]. This works for my reference list but in my citation I still have [1, 2, ...]. How can I change this to [A1, A2,...]?
Here is my minimal document (you have to use 2 bibfiles: litA and litB)
\documentclass[a4paper,10pt,twoside,titlepage,parskip=half-]{scrartcl}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman, english]{babel}
\usepackage{eso-pic}
\usepackage{textcomp} %\textmu einfügen z.B.
\usepackage[normalem]{ulem} %text unterstreichen, durchstreichen usw.
\usepackage[resetlabels]{multibib}
\newcites{lita}{References1}
\newcites{ownb}{References2}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\makeatletter\renewcommand{\@biblabel}[1]{[#1]}\makeatother
\bibliographystylelita{plain}
\bibliographylita{./literature/litA}
\citelitd{label1}
\makeatletter\renewcommand{\@biblabel}[1]{[A\,#1]}\makeatother
\bibliographystylelitb{plain}
\bibliographylitb{./literature/litB}
\end{document}

{}) or select your code and hit Ctrl+K. – Claudio Fiandrino Feb 22 '13 at 15:51