I created a bibliography file named bibliografia.bib. This is the code:
% Encoding: UTF-8
@Book{Russell2000,
title = {Θεωρία των Τύπων},
publisher = {Στάχυ},
year = {2000},
author = {\textlatin{Bertrand Russell}},
}
And this is the main text:
\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}
Without the lines line1-line4 everything is OK, but with them compiling doesn't stop. I get this error message:
Error: Could not start the command: "C:/Program Files/MiKTeX 2.9/miktex/bin/x64/bibtex.exe" "MainText"
What maybe wrong?
\authoris given. – Vincent Dec 08 '19 at 17:58