I use TexMaker with TeXworks to write a paper. The comments I use are given below.
\documentclass[12pt,a4paper]{article}
\usepackage[numbers,sort & compress]{natbib}
\begin{document}
\section{Section_1}
\section{Section_2}
\section{Section_3}
\bibliographystyle{unsrt,firstinit=true}
\bibliography{Bibfile}
\end{document}
I generated Bibfile using Mendeley. In the LaTeX generated file, following issues are there:
Author names are abbreviated and some are not; I need all authors name in all the references abrreviated.
In some references, issue numbers also present. I want to remove it.
In some references, month is also displayed before the year (may 2015). But I need only the year.
Simply, the format I want is the following:
"Charles, A. B. and Daniel, B. C., Title of the Paper, Journal Name, Vol_No.: Page_Numbers, Year."
Thanks in advance for any help/hint to solve these issues.
\bibliographystyle{unsrt,firstinit=true}doesn't look right: the macro\bibliographystyletakes only one argument, the name of a bibliography style file. – Mico Apr 15 '16 at 05:36makebstutility -- part of the custom-bib package -- to create a bespoke bibliography style from scratch. – Mico Apr 15 '16 at 05:39makebstutility, if you want to stick with BibTeX. – Mico Apr 15 '16 at 07:28biblatexpackage to consider. Be aware, though, that the switching costs associated fromnatbib/BibTeX tobiblatexmay be at least as high as learning how to run themakebstutility to create a bespoke bibliography style file that implements all of your formatting requirements. – Mico Apr 15 '16 at 08:13makebstutility. Happy BibTeXing! – Mico Apr 15 '16 at 16:02