異なるファイルタイプから参照を追加する方法: .bib と .text

異なるファイルタイプから参照を追加する方法: .bib と .text

私は「宇宙」の overleaf の例に取り組んでいます。現在の (bib を使用する) 参照リストに参照を追加したいのですが、代わりに 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]のこれに従ってほしいです。

関連情報