인용에 대한 모든 튜토리얼을 읽었고 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}
가져온 인용 패키지가 없습니다.
내 턱받이 파일은 내 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
. "Physics IA"에서 "PhysicsIA"로 변경한 다음 직접 경로를 사용했습니다.
\bibliography{C://Users/Alex/Desktop/PhysicsIA/sources.bib}
그럼 효과가 있었어