Well, that's not exactly a minimal working example, since to use the document class you seem some logo files (contorno_preto and positivo_cor), without which you can't process the file, but I was able to do some testing using some faked logos.
This definitely looks like a problem with the way the document class defines its \title and \subtitle commands. If this document class is distributed by your University for thesis-writers, I think it might be worth contacting them and see if they know anything.
In the meantime, at least in my tests, it seems to be a workaround just to eliminate the lines:
Code: Select all
\title{Utilizando SSIM para medir a deteriorizac\~ao em interpoc\~oes LAEP - Trying write ç }
\subtitle{Uma abordagem atrav\'es de imagens forenses}
And replace them with these:
Code: Select all
\newcommand{\mytitle}{Utilizando SSIM para medir a deteriorizac\~ao em interpoc\~oes LAEP - Trying write ç}
\newcommand{\mysubtitle}{Uma abordagem atrav\'es de imagens forenses}
\makeatletter
\def\@subtitle{\mysubtitle}
\def\@maintitle{\mytitle}
\def\@title{\mytitle: \mysubtitle}
\makeatother
That seems to do pretty much the same thing but without generating errors. But really, I think the document class needs to be fixed by whoever maintains it instead.