GeneralRunaway argument?

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
jhoneme
Posts: 1
Joined: Mon Jul 27, 2015 5:45 am

Runaway argument?

Post by jhoneme »

Hi,

Dear,

my file suddenly stopped compiling. The log file is attached.
He is presenting error in the following line:

\ include {} CAP5% Chapter 5: ...

the following error:

Code: Select all

)
Runaway argument?
./mestrado.tex:16: File ended while scanning use of \ language @ @ active arg ".
<inserted text>
                 \ pair
L.16 \ include {} CAP5
                    % Chapter 5: ...
can anyone help me?

Code: Select all

---------------------------------mestrado.tex--------------------------------

% Classe do documento
\documentclass[twoside,a4paper,12pt]{report}

% Pacotes e comandos customizados
\include{meta}


% Início do texto
\begin{document}

\include{pre}   % Capa, prefácio e afins
\include{cap1}	% Capítulo 1: Introdução
\include{cap2}	% Capítulo 2: ...
\include{cap3}	% Capítulo 3: ...
\include{cap4}	% Capítulo 4: ...
\include{cap5}	% Capítulo 5: ...
\include{cap6}	% Capítulo 6: ...
\include{final}	% Capítulo 6: Considerações Finais
\bibliography{mestre}


% Apêndice(s)
%\include{apendice}

% Fim do texto
\end{document}
Attachments
tese-mestrado (3).log
(59.75 KiB) Downloaded 328 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Runaway argument?

Post by Johannes_B »

Welcome,

there are a few issues in your log file. Many of your figures are too big and cause overfull boxes, your headheight is to small as well, please add \geometry{headheight=14.5pt} at the end of your preamble.

It seems you are switching the language quite often. I bet you forgot the closing brace somewhere in chapter 5. Savest way to find troublemakers like that: preparing a minimal working example
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply