![錯誤:無法啟動指令:[...] bibtex.exe](https://rvso.com/image/405727/%E9%8C%AF%E8%AA%A4%EF%BC%9A%E7%84%A1%E6%B3%95%E5%95%9F%E5%8B%95%E6%8C%87%E4%BB%A4%EF%BC%9A%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"
可能出了什麼問題?