我有一篇带有文章类别的文档。我希望参考文献采用 IEEE 样式进行格式化。
我使用 IEEEtrantools 如下:
\documentclass{article}
\usepackage{IEEEtrantools}
\usepackage{cite} % to cite as [1-2], not [1], [2]
\begin{document}
\cite{einstein}
\bibliographystyle{ieeetr}
\bibliography{mydatabase}
\end{document}
这不会产生 IEEE 样式的参考文献。例如,缺少数字字段。我坚持使用 IEEEtrantools,因为它提供了其他有用的功能,并且它基于 bibtex(而不是看起来不太友好的 biber)。
您可以将 mydatabase.bib 视为
@article{einstein,
title={Investigations on the Theory of the {B}rownian Movement
$I$},
author={Albert Einstein},
journal={Annal. Physik},
volume={34},
number={1},
pages={591--592},
month=jan,
year={1911}
}