![오류: 다음 명령을 시작할 수 없습니다: [...] bibtex.exe](https://rvso.com/image/405727/%EC%98%A4%EB%A5%98%3A%20%EB%8B%A4%EC%9D%8C%20%EB%AA%85%EB%A0%B9%EC%9D%84%20%EC%8B%9C%EC%9E%91%ED%95%A0%20%EC%88%98%20%EC%97%86%EC%8A%B5%EB%8B%88%EB%8B%A4%3A%20%5B...%5D%20bibtex.exe.png)
라는 참고문헌 파일을 만들었습니다 bibliografia.bib
. 코드는 다음과 같습니다.
% Encoding: UTF-8
@Book{Russell2000,
title = {Θεωρία των Τύπων},
publisher = {Στάχυ},
year = {2000},
author = {\textlatin{Bertrand Russell}},
}
그리고 본문은 이렇습니다.
\documentclass[a4paper,11pt,twoside]{book}
\usepackage[a4paper,left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm]{geometry}
\usepackage[english,greek]{babel}
\usepackage[utf8]{inputenc}
\title{ΜΑΘΗΜΑΤΙΚΑ}
\begin{document}
\maketitle
\tableofcontents
Ράσελ\cite{Russell2000}
\addcontentsline{toc}{chapter}{Βιβλιογραφία} %line1
\nocite{*} %line2
\bibliographystyle{plain} %line3
\bibliography{bibliografia} %line4
\end{document}
줄이 없으면 모든 것이 정상 line1
이지만 line4
줄이 있으면 컴파일이 멈추지 않습니다. 다음 오류 메시지가 나타납니다.
Error: Could not start the command: "C:/Program Files/MiKTeX 2.9/miktex/bin/x64/bibtex.exe" "MainText"
무엇이 잘못되었을까요?