bib 파일의 인용 문헌을 소스 tex 파일에 통합하는 방법은 무엇입니까?

bib 파일의 인용 문헌을 소스 tex 파일에 통합하는 방법은 무엇입니까?

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에는 단일 .tex파일만 포함되어 있습니다. 이는 참고문헌도 해당 단일 파일에 포함되어 있음을 의미합니다.

preprint.tex의 인용 문헌을 bib.bib단일 파일로 결합하는 방법을 설명해 주시겠습니까 .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단계. 두 번 컴파일합니다 pdflatex preprint.tex.pdflatex preprint.tex

여기에서 자세한 내용을 읽을 수 있습니다.https://www.overleaf.com/learn/latex/Bibliography_management_with_bibtex

관련 정보