I'm having problems enumerating my bibliography list. I'm using these lines to define my bibliography style:
\usepackage[sort,authoryear]{natbib}
\bibliographystyle{apalike}
I know I could use:
\usepackage[sort,numbers]{natbib}
\bibliographystyle{ieeetr}
And it would result in numbered citations list, like:
[1] Author. 2015. Paper.
[2] Second Author. 2011. Paper.
...
But the problem is that references change (\citep and \cite). In text instead of reference (Author, 2015) it becomes numbers like [1]. I want to keep my apalike style references, and add numbers to each item in my bibliography list. How do I do that? I tried adding \begin{enumerare} and \item near each \bibitem and \end{enumerare}. It didn't work.
biblatex, if you would like to usebiblatex, Biblatex enumerating sorted bibliography (using authoryear-ibid style) or biblatex-biber: How to customize the order in the bibliography? (you will needcitestyle=authoryear, labelnumber,with the latter) might be of help. (Your case is even easier: Just load aauthoryearstyle and add\makeatletter \input{numeric.bbx} \makeatother) If not you might want to change the tags so as to not confuse people. – moewe Jun 21 '15 at 08:27\makeatletter \input{numeric.bbx} \makeatotherworks even withbiblatex-apa. – moewe Jun 21 '15 at 08:28