On 2009-05-12, Marcelo Reis wrote:
> Hi Vincent, I don't want to bother you, but seems like something is not
> working in my environment, maybe you could give me a opinion.
> When I use
> \renewcommand\contentsname{ANYTHING}
> things works fine
> but when I use the \CENTER
> \renewcommand\contentsname{\center Anything}
Warning: command names in LaTeX are CASE SENSITIVE!
> Nothing is printed in the screen from this point on....
\center starts a "center" environment and expects an \endcenter at some point
(it the low level form of \begin{center} \end{center}.
You most probably are looking for \centering .
If this fails as well, you can try \hfill*<something>\hfill* .
Günter