\citeコマンドでbibファイルを読み込めない

\citeコマンドでbibファイルを読み込めない

- hazama drink の投稿
返信数: 2
MacBook Air バージョン10.15.6、エディタはAtomを利用しています。

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を読み込めていないために、エラーが表示されているのかと思いますが、どのように対処したらいいのか分からないので、ご教授願いたいです。

hazama drink への返信

Re: \citeコマンドでbibファイルを読み込めない

- 帯田 木偶太 の投稿

》 bunsi.bibを読み込めていないために、エラーが表示されているのかと思いますが、

エラーではありません。警告が出ていますが、読込めないでいるのは bunsi.bib ではなく、 test.bbl です。

参照しておられる TeXWiki の記事には、

  1.まず bunken.tex を platex でタイプセット(bunken.dvi, bunken.aux, bunken.log ができる)

  2.出てきた bunken.aux を pbibtex で処理(bunken.bbl, bunken.blg ができる)

  3.文献リスト bunken.bbl ができたことを確認し,platex で bunken.tex を再度タイプセット

とありますが、2 番目を忘れていませんか? また、その際にエラーはなかったですか?

帯田 木偶太 への返信

Re: \citeコマンドでbibファイルを読み込めない

- hazama drink の投稿
1番目でエラーが出たと勘違いして、2番目以降を怠っていました。

ご指摘通りの手順を行ったところ正常に動作しました。
ありがとうございました。