Como adicionar referências de tipos de arquivos diferentes: .bib e .text

Como adicionar referências de tipos de arquivos diferentes: .bib e .text

Estou trabalhando no exemplo do "universo" no verso. Eu queria tentar adicionar uma referência à lista de referências atual (usa bib). Mas, em vez disso, quero usar um arquivo tex.

Existe uma maneira de adicionar o arquivo tex junto com o arquivo bib?

Eu tenho isto:

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

Fica reference.bibassim:

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

Fica ref.texassim:

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

Quando tento adicionar o ref.texto, bibliographynão obtenho nenhuma saída.

Eu fiz isso no arquivo tex principal, para bibliography:

\bibliography{references,ref}

Mas não funcionou. Existe algum pacote que eu deva importar primeiro para que funcione como acima para fazer referência a um arquivo tex após o arquivo bib?

A saída atual é:

insira a descrição da imagem aqui

Eu gostaria que o ref.tex seguisse este também em [2].

informação relacionada