パッケージを使用して、記事の主要部分と補足部分用に、記事の 2 つの別個の参考文献を作成しようとしています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
最後に、記事の主要部分と補足部分の BibTeX ファイルがあります。ここで、ドキュメント クラスを から に、つまり 1 行目ではなく 2 行目のコメントに置き換えるとRef.bib
、すべてがうまくいきます。次のコマンドを使用して、セクションごとに個別の参考文献を取得します。RefSupp.bib
revtex4
report
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
。