I wish to make the list of authors show up as centered, uppercase and listed vertically on my titlepage. My documentclass contains a section like this
\begin{center}
...
\renewcommand{\and}{\\}\MakeUppercase{\@author}
...
\end{center}
but this particular combination or linebreaks, MakeUppercase and centering causes an error; \@icentercr doesn't match its definition
A minimal example would be
\documentclass{article}
\newcommand{\mytext}{Foo \\ Bar}
\begin{document}
\begin{center}
\MakeUppercase{\mytext}
\end{center}
\end{document}
\uppercase{\@author}does nothing. – Mikael Öhman Mar 17 '11 at 15:35\uppercase, but thetextcasepackage. I will edit your answer to include the working code. – Mikael Öhman Mar 17 '11 at 15:47textcasehelped. I just used\uppercaseto fix the minimal example. ;-) – Stefan Kottwitz Mar 17 '11 at 15:53