我正在嘗試為我的文章創建兩個單獨的參考書目,一個用於主要部分,另一個用於使用chapterbib
包的文章的補充部分。以下是我的最小工作範例:
%\documentclass{report}
\documentclass[prb,twocolumn,aps,floatfix]{revtex4}
\usepackage{chapterbib}
\begin{document}
\include{section1}
\include{section2}
\end{document}
其中chapter1.tex 和chapter2.tex 包含相關文本,後跟
\bibliographystyle{plain}
\bibliography{Ref} % for section1.tex
%\bibliography{RefSupp} % for section2.tex
在最後;Ref.bib
和RefSupp.bib
是文章主要部分和補充部分的 BibTeX 文件。現在,如果我將文檔類別從第 2 行(而不是第 1 行)替換為revtex4
iereport
註釋,一切都會順利進行:我使用以下命令獲取各個部分的單獨參考書目:
latex mainfile
bibtex section1
bibtex section2
latex mainfile
latex mainfile
I found no \bibstyle command---while reading file section1.aux
但如果我使用文檔類,我會在步驟 2 和 3 中收到錯誤revtex4
。有人知道如何開始chapterbib
工作嗎revtex4
?或者也許是我的問題的替代解決方案?
謝謝!
答案1
而不是\bibliographystyle{plain}
你嘗試使用類似的東西\bibliographystyle{aipnum4-1}
。也試試revtex4-1
。