I would like the item in my bibliography to be format like this
Cauchy, L. A., Goursat E., Contour integral. French Academy, 2012.
That is:
-no numbering or key before the authors name
-lastname before the firstname where the firstname is abbreviate
But I get this

with the below sample document which illustrates the different kind of author entries I can have.
Should I manually format all author entries to get the format I want?
Is there an automated way to get this result?
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{example.bib}
@article{
refOne,
author = {Cauchy, L. A. and E. Goursat },
title = {Contour integral},
year = {2012},
journal = {French Academy},
}
@article{
refTwo,
author = {Louis Augustin Cauchy and Edouard Goursat},
title = {Contour integral},
year = {2012},
journal = {French Academy},
}
@article{
refThree,
author = {L. A. Cauchy and E. Goursat},
title = {Contour integral},
year = {2012},
journal = {French Academy},
}
\end{filecontents*}
\begin{document}
\bibliography{example}{}
\bibliographystyle{plain}
\nocite{*}
\end{document}
biblatex. I think the styleauthoryearis a good starting point. However there are a lot of styles available. – Marco Daniel Aug 7 '12 at 19:15