나는 논문을 작성하기 위해 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}