0

I have two bibliographies in my document. I am using multi bib. I displayed the two bibliographies in two separate list using the following code. But I need to customise the citations of one of them to be [S1] and the other one to be numeric citaton [1]

% arara: pdflatex
% arara: bibtex: { files: [ mydoc, PS ] }
% arara: makeindex
% arara: pdflatex
% arara: pdflatex

\documentclass{article}
\usepackage{multibib}
\newcites{PS}{Primary Studies}

\usepackage{url}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}

\usepackage[titletoc,title]{appendix}
\usepackage{afterpage}

\begin{document}
\section{Main body text}

reference 1 [1]
primary study 1 [S1]


\bibliographystyle{IEEEtran}
\bibliography{template_latex_bibliography-bib}

\begin{appendices}
\section{List of Primary studies}
\bibliographystylePS{IEEEtran}
\bibliographyPS{mydoc-primarystudies-bib}
\end{appendices}

\end{document}
  • Would this be of any help? https://tex.stackexchange.com/a/102262/117534 – Troy Aug 20 '17 at 17:11
  • This worked in the references list when using the alpha style only, but not in the in-text citation.. any thoughts? – user134168 Aug 20 '17 at 23:07
  • Can you show what you have done (i.e. the code and output)? (and provide some dummy bib entries as well so it is easier for us to test) It seems to work as expected for me, but I may be misunderstanding your question.. – Troy Aug 21 '17 at 01:07
  • working with the IEEEtran style now.. thanks – user134168 Aug 21 '17 at 09:58

0 Answers0