bib.bib
コンテンツのあるファイルがあります
@article{otto2001geometry,
title={The geometry of dissipative evolution equations: the porous medium equation},
author={Otto, Felix},
year={2001},
publisher={Taylor \& Francis}
}
およびTexファイルpreprint.tex
の内容
\documentclass[11pt]{article}
\begin{document}
The paper \cite{otto2001geometry} is seminal.
\bibliographystyle{unsrt}
\bibliography{bib}
\end{document}
私はプレプリントを見たことがあります(例えば、これそしてこれ) は arxiv.org にアップロードされており、1 つの.tex
ファイルのみが含まれています。つまり、参考文献もその 1 つのファイルに含まれているということです。
preprint.tex
引用文献をbib.bib
1 つのファイルに結合する方法を説明していただけますか.tex
?
答え1
もちろん、.tex
を使用してファイルに参照を手動でコーディングすることもできますbibitem
。ただし、別の.bib
ファイルを保持すると管理が簡単になります。必要に応じて、 を使用してプロジェクトを一度コンパイルし、コメントで提案されているようにbibtex
、生成されたファイルの内容をファイル.bbl
に格納します。.tex
ステップ 1. 一度コンパイルします。pdflatex preprint.tex
ステップ 2. bibtex を実行します。bibtex preprint.tex
ステップ3. のすべてをコピーしpreprint.bbl
てpreprint.tex
、\bibliographystyle{unsrt}\bibliography{bib}
ステップ4. 2回コンパイルするpdflatex preprint.tex
:pdflatex preprint.tex
詳細はこちらをご覧ください:https://www.overleaf.com/learn/latex/Bibliography_management_with_bibtex