https://texwiki.texjp.org/?%E6%96%87%E7%8C%AE%E5%BC%95%E7%94%A8
で紹介された方法でbibファイルを作成し、\citeコマンドで参照しようとしてもエラーが出てしまいます。以下がtex、bib、実行した際のエラーです。
また、texとbibは同じディレクトリにあります。
test.tex
\documentclass[dvipdfmx]{jsarticle}
\begin{document}
\textit{Molecular Cell Biology}~\cite{mcbe} (日本語訳は『分子細胞生物学』~\cite{mcb} )は,
\textit{Molecular Biology of the Cell} と並んで,しばしば分子生物学の入門書として読まれる本です。
\bibliographystyle{jplain}
\bibliography{bunsi}
\end{document}
bunsi.bib
@book{mcb,
author = "ボルティモア,ロディッシュ,ダーネル and others",
title = "『分子細胞生物学 第4版』",
publisher = "東京化学同人",
year = "2001年9月10日",
note = "野田春彦,丸山工作 訳" }
@book{mcbe,
author = "D. Baltimore, H. Lodish, J. E. Darnell and others",
title = "MOLECULAR CELL BIOLOGY, Fourth Edition",
publisher = "W. H. Freeman",
year = "2000" }
エラー
LaTeX Warning: Citation `mcbe' on page 1 undefined on input line 4.
LaTeX Warning: Citation `mcb' on page 1 undefined on input line 4.
No file test.bbl.
[1] (./test.aux)
LaTeX Warning: There were undefined references.
bunsi.bibを読み込めていないために、エラーが表示されているのかと思いますが、どのように対処したらいいのか分からないので、ご教授願いたいです。