I get a \newblock when I convert bibtex to bibitem using the method in BibTeX in LaTeX document
my code:
\documentclass{article}
\begin{document}
\nocite{*}
\bibliography{biblio}
\bibliographystyle{plain}
\end{document}
my biblio.bib file:
% survey
@article{erol2007vision,
title={Vision-based hand pose estimation: A review},
author={Erol, Ali and Bebis, George and Nicolescu, Mircea and Boyle, Richard D and Twombly, Xander},
journal={Computer Vision and Image Understanding},
volume={108},
number={1},
pages={52--73},
year={2007},
publisher={Elsevier}
}
the generated test.bbl file:
\begin{thebibliography}{1}
\bibitem{erol2007vision}
Ali Erol, George Bebis, Mircea Nicolescu, Richard~D Boyle, and Xander Twombly.
\newblock Vision-based hand pose estimation: A review.
\newblock {\em Computer Vision and Image Understanding}, 108(1):52- -73, 2007.
\end{thebibliography}
the test.pdf generated looks like:
References
[1] Ali Erol, George Bebis, Mircea Nicolescu, Richard D Boyle, and Xander Twombly. Vision-based hand pose estimation: A review. Computer Vision and Image Understanding, 108(1):52–73, 2007.
Is the test.bbl correct? What is the newblock thing? Does it comply with ieee robotics requirements? http://ras.papercept.net/conferences/support/tex.php
IEEEtran.bstinstead ofplain.bst. – Johannes_B Jul 24 '16 at 06:49\bibliographystyle{plain}. Substitute. – Johannes_B Jul 25 '16 at 14:32