I just got LaTeX up and running and started following some basic instructions.
The first time I followed the beginning over here: http://ftp.ctex.org/pub/tex/tools/editors/TeXworks/manual.pdf
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\geometry{a4paper}
\usepackage[francais]{babel}
\title{Premier document}
\author{Un TeXnicien}
\date{}
\begin{document}
\maketitle
Voici un texte accentué en français!
\end{document}
Now, afterwards I restarted the program and made a new TeX file. However, this time I can't run this:
\documentclass{article}
\usepackage[english]{babel}
\begin{document}
test
\end{document}
Because I get the error in the title. What's up with this? I'm using TeXworks.
.auxfile – Joseph Wright Nov 18 '13 at 17:37TeXworksto remove all auxiliary files? – Nov 18 '13 at 17:38*.auxfile is not stringently required. An anew compiler run should do the trick already. – Thorsten Donig Nov 18 '13 at 17:43