![Error: No se pudo iniciar el comando: [...] bibtex.exe](https://rvso.com/image/405727/Error%3A%20No%20se%20pudo%20iniciar%20el%20comando%3A%20%5B...%5D%20bibtex.exe.png)
Creé un archivo de bibliografía llamado bibliografia.bib
. Este es el código:
% Encoding: UTF-8
@Book{Russell2000,
title = {Θεωρία των Τύπων},
publisher = {Στάχυ},
year = {2000},
author = {\textlatin{Bertrand Russell}},
}
Y este es el texto principal:
\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}
Sin las líneas line1
, line4
todo está bien, pero con ellas la compilación no se detiene. Recibo este mensaje de error:
Error: Could not start the command: "C:/Program Files/MiKTeX 2.9/miktex/bin/x64/bibtex.exe" "MainText"
¿Qué tal vez esté mal?