%20%E7%B7%A8%E8%99%9F%E5%8A%A0%E5%85%A5%E5%8F%83%E8%80%83%E6%9B%B8%E7%9B%AE%EF%BC%9F.png)
我是 LaTeX 新手,正在使用頁面底部附近的哈佛 LaTeX 論文模板這裡,而且我不知道如何編輯 Dissertate.cls 文件以將arXiv
我的文件中的數字添加.bib
到參考書目中。例如,這是我想要處理的 .bib 條目:
\bibliographystyle
該類別中使用的是\bibliographystyle{apalike2}
.
答案1
這樣的條目是@misc
,而不是@article
:從下拉式選單中選擇適當的類型。
\begin{filecontents*}{\jobname.bib}
@misc{Witten:2007ct,
author={Witten, Edward},
title={Conformal Field Theory in Four and Six Dimensions},
year=2007,
howpublished={arXiv 0712.0157},
}
\end{filecontents*}
\documentclass{Dissertate}
\begin{document}
\cite{Witten:2007ct}
\bibliographystyle{apalike2}
\bibliography{\jobname}
\end{document}
我使用該filecontents*
環境只是為了使範例獨立,您將使用普通資料庫。