[Tex/LaTex] Adding numbers to Author Year citations in list of references

bibliographiesbibtex

I am new to latex so please excuse any beginner errors..

I am using lyx to write a paper (article class) and i am using bibtex to generate my bibliography (kluwer style). My citations need to be referred to in text as Author (Year) or (Author, Year) and in my list of references as Author (Year) title etc..which I have managed to do.

but…i need to number the citations in the list of references. is there any way to change a list of references to an itemised list?

thanks!

Best Answer

You may want to change to BiblaTex, it is the future since it's much more customizable than BibTex. You can do what you asked for using this*:

\defbibenvironment{bibliography}
{\enumerate{}
{\setlength{\leftmargin}{\bibhang}%
\setlength{\itemindent}{-\leftmargin}%
\setlength{\itemsep}{\bibitemsep}%
\setlength{\parsep}{\bibparsep}}}
{\endenumerate}
{\item}

*I took it from this question. When you put this in the preamble, you will get what you need:

If you decide to move to Biblatex, you may want to use Biber as the backend. Finally, these two questions will help you a lot to change. What to do to switch to biblatex? and How to use biber.

numbered bibliography

Related Question