오류: 다음 명령을 시작할 수 없습니다: [...] bibtex.exe

오류: 다음 명령을 시작할 수 없습니다: [...] bibtex.exe

라는 참고문헌 파일을 만들었습니다 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"

무엇이 잘못되었을까요?

관련 정보