Roland Schmitz wrote:
i want to use a savebox, to reuse the title of my document on different places
of my Document. Here's the defintion of th Savebox
\newsavebox{\DocTitle} \savebox{\DocTitle}{MyTitle}
Today i wanted to have the Title in an "huge" fontsize, so i tried:
{\bfseries\huge{\usebox{\DocTitle}}}
But this did not work. The Titel is set in normal size.
If i do
{\bfseries\huge X->{\usebox{\DocTitle}}<-X}
this cannot work, because the box is set as is ...
Write into the preamble
\let\OldMaketitle\maketitle
\renewcommand\maketitle{%
[EMAIL PROTECTED]
\OldMaketitle%
}
Now you can write in ERT
{\bfseries\huge\saveTitle}
Herbert