引用が機能しない

引用が機能しない

引用に関するチュートリアルをすべて読み、biber他のものも試してみましたが、コンパイルしても引用が表示されません。ここに私のコードの一部を示します。

\documentclass[letterpaper, 12pt]{article}
\usepackage[letterpaper, inner=1in, outer=1in,top=1in,bottom=1in]{geometry}
\begin{document}
\section{Results}
\cite{house2003english}
\bibliographystyle{plain}
\bibliography{sources.bib}
\section{Conclusion}
\section{Evaluation}
\onecolumn
\section{Bibliography}
\pagenumbering{roman}
\end{document}

引用パッケージがインポートされていません

ここに画像の説明を入力してください

私の bib ファイルは tex ファイルと同じフォルダにあり、スペルが正しいことを確認しました。私の bib ファイルは次のとおりです。

@article{house2003english,
  title={English as lingua franca and its influence on discourse norms in other languages},
  author={House, Juliane},
  journal={Translation today: Trends and perspectives},
  pages={168--180},
  year={2003},
  publisher={Clevedon: Multilingual Matters}
}

ここに画像の説明を入力してください

何が間違っているのか分かりません。

答え1

次のステップは、bibtex を実行し、次に pdflatex (またはその他) を 2 回実行することです。

答え2

問題は解決しました。問題は、ディレクトリ フォルダー内にスペースがあったことですsources.bib。「Physics IA」を「PhysicsIA」に変更し、次に直接パスを使用しました。

\bibliography{C://Users/Alex/Desktop/PhysicsIA/sources.bib}

そしてそれはうまくいった

関連情報