我已經閱讀了有關引用的所有教程,並嘗試了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 檔案位於同一資料夾中,並且我已確保我的拼字正確。這是我的圍脖文件:
@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
我已經解決了問題,問題是我的目錄資料夾中有一個空格sources.bib
。
\bibliography{C://Users/Alex/Desktop/PhysicsIA/sources.bib}
然後它起作用了