參考書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} 

相關內容