나는 "우주"의 뒷면 예제를 작업 중입니다. 현재(턱받이 사용) 참조 목록에 참조를 추가하고 싶었습니다. 하지만 대신 tex 파일을 사용하고 싶습니다.
bib 파일과 함께 tex 파일을 추가하는 방법이 있나요?
나는 이것을 가지고있다:
\documentclass{article}
\usepackage[utf8]{inputenc}
\title{Universe}
\author{Overleaf}
\date{September 2020}
\usepackage{natbib}
\usepackage{graphicx}
\begin{document}
\maketitle
\section{Introduction}
There is a theory which states that if ever anyone discovers exactly what the Universe is for and why it is here, it will instantly disappear and be replaced by something even more bizarre and inexplicable.
There is another theory which states that this has already happened.
\section{Conclusion}
``I always thought something was fundamentally wrong with the universe'' \citep{adams1995hitchhiker}
\bibliographystyle{plain}
\bibliography{references}
\end{document}
모양 reference.bib
은 다음과 같습니다.
@book{adams1995hitchhiker,
title={The Hitchhiker's Guide to the Galaxy},
author={Adams, D.},
isbn={9781417642595},
url={http://books.google.com/books?id=W-xMPgAACAAJ},
year={1995},
publisher={San Val}
}
모양 ref.tex
은 다음과 같습니다.
@article{PhysRev.47.777,
title = {Can Quantum-Mechanical Description of Physical Reality Be Considered Complete?},
author = {Einstein, A. and Podolsky, B. and Rosen, N.},
journal = {Phys. Rev.},
volume = {47},
issue = {10},
pages = {777--780},
numpages = {0},
year = {1935},
month = {May},
publisher = {American Physical Society},
doi = {10.1103/PhysRev.47.777},
url = {https://link.aps.org/doi/10.1103/PhysRev.47.777}
}
ref.tex
에 추가하려고 하면 bibliography
아무 결과도 나오지 않습니다.
나는 다음을 위해 메인 tex 파일에서 이 작업을 수행했습니다 bibliography
.
\bibliography{references,ref}
그러나 작동하지 않았습니다. bib 파일 다음에 tex 파일을 참조하기 위해 위와 같이 작동하도록 먼저 가져와야 하는 패키지가 있습니까?
현재 출력은 다음과 같습니다:
나는 ref.tex가 [2]에서도 이것을 따르기를 원합니다.