With the following document class:
Code: Select all
\documentclass[12pt]{report}
Code: Select all
\bibliographystyle{elsarticle-harv}
\bibliography{References}
%\bibliography{IEEEfull,References}
The problem got fixed by changing the style to the following:
Code: Select all
\bibliographystyle{elsarticle-num-names}
First Name, Family Name, Title Vol (Number), (Year) Pages.
but I need to have Family names coming first so that I can have all the names alphabetically ordered. I am wondering if there are any changes that I can make to have this implemented based on the same document class (i.e.,
report
) and bibliography style (i.e., elsarticle-num-names
).I also tried other bibliography styles but no perfect fix. For example, based on:
Code: Select all
\bibliographystyle{apalike}
Code: Select all
@ELECTRONIC{example,
author = {{Latex Community}},
month = {August},
year = {2013},
title = {{Description of a Reference Problem}},
note = {Accessed August 2011},
url = {http://www.latex-community.org},
}
amiruw