Как добавить ссылки из разных типов файлов: .bib и .text

Как добавить ссылки из разных типов файлов: .bib и .text

Я работаю над примером на обороте "вселенная". Я хотел попробовать добавить ссылку на текущий (использует bib) список ссылок. Но вместо этого я хочу использовать tex-файл.

Есть ли способ добавить файл tex вместе с файлом bib?

У меня есть это:

\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}
}

Когда я пытаюсь добавить to ref.tex, bibliographyя не получаю никакого вывода.

Я сделал это в основном tex-файле для bibliography:

\bibliography{references,ref}

Но не сработало. Есть ли какой-нибудь пакет, который мне нужно импортировать первым, чтобы он работал так, как указано выше, для ссылки на файл tex после файла bib?

Текущий выход:

введите описание изображения здесь

Я бы хотел, чтобы ref.tex также соответствовал этому в [2].

Связанный контент