参考书 IEEE

参考书 IEEE

我使用 TeXworks 和 Texmaker 撰写论文,并且必须以某种方式提供参考资料。此外,所有内容都应该使用“书籍”环境来编写。

我发现 JabRef 适用于我想要使用的 IEEE 引用样式,但我无法在书中使用它。很明显,我做了一件愚蠢的事情,因为我可以在文章中使用它。

有没有可以提供的模板?

答案1

以下是使用 IEEE 参考书目样式的示例。请注意,JabRef 只是一个用于维护/添加/删除和调整参考书目条目的 GUI。它对文档创建机制没有影响。

\documentclass{book}
% === Remove this up to the marked position to use your own bib file
\usepackage{filecontents} % For a dummy bibfile creation
\begin{filecontents*}{mybibfile.bib}
@ARTICLE{authora,
  author = {A. Aaaaa},
  title = {Some article},
  journal = {Journal of Dummy Article Names},
  year = {2012},
  volume = {99},
  pages = {1-5}
}

@ARTICLE{authorb,
  author = {B. Baaaa},
  title = {Another article},
  journal = {Journal of Dummy Article Names},
  year = {2012},
  volume = {99},
  pages = {6-10}
}

\end{filecontents*}
% =========== Up to here
\begin{document}
We cite papers \cite{authora,authorb}.
\bibliographystyle{ieeetran}
\bibliography{mybibfile} % Replace this with your original bib file
\end{document} 

相关内容