将 bibtex 转换为 bibitem:出现 \newblock

将 bibtex 转换为 bibitem:出现 \newblock

\newblock当我转换bibtexbibitem使用方法时,我得到了LaTeX 文档中的 BibTeX

我的代码:

\documentclass{article}
\begin{document}
\nocite{*}
\bibliography{biblio}
\bibliographystyle{plain}
\end{document}

我的biblio.bib文件:

% 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}
}

生成的test.bbl文件:

\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}

生成的结果test.pdf如下:

参考

[1] Ali Erol、George Bebis、Mircea Nicolescu、Richard D Boyle 和 Xander Twombly。基于视觉的手势估计:综述。计算机视觉和图像理解,108(1):52–73,2007 年。

正确吗test.bbl?newblock 是什么?它符合 IEEE 机器人技术要求吗?http://ras.papercept.net/conferences/support/tex.php

相关内容