錯誤:無法啟動指令:[...] 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"

可能出了什麼問題?

相關內容