错误:无法启动命令:[...] 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"

可能有什么问题?

相关内容