In my bib library, the author is like "John, W.W.C", but when I make bibliography with bibliographystyle IEEETrans, it comes out like "W. John". Could you help me out? Thank you.
The bib lirary is as follow:
@article{articletocite,
author={Jo, W.W.C. and Hu, J.},
journal={Journal}
title={Title},
year={2014},
}
The tex file is as follow:
\documentclass[11pt, final, journal, letterpaper, doublecolumn]{IEEEtran}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{balance}
\usepackage{caption}
\usepackage{multirow}
\usepackage{array}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{subcaption}
\usepackage{flushend}
\usepackage{placeins}
\title{Title}
\author{Author}
\begin{document}
\maketitle
\bibliographystyle{IEEEtran}
\bibliography{paper.bib}
\end{document}
\documentclass{...}and ending with\end{document}. – LaRiFaRi Aug 10 '15 at 09:06author = {John, W. W. C.}(with spaces) in order for BibTeX to see that the author has tree first names with the initials "W.", "W." and "C." and not that his their first name is "W.W.C". See also BibTeX and authors with multiple initials (external blogpost). – moewe Aug 10 '15 at 09:12