>>>>> "Bruce" == Bruce Momjian <[EMAIL PROTECTED]> writes:
>> >>>>> "Bruce" == Bruce Momjian <[EMAIL PROTECTED]> writes:
>>
Bruce> Sorry, doesn't work. I read the LaTeX FAQ(item attached), and
Bruce> it said that \maketitle resets the \thispagestyle, even if the
Bruce> value of \thispagestyle is {empty}.
>> OK, what about that:
>>
>> \let\realmaketitle=\maketitle
>> \newnewcommand{\maketitle}{\realmaketitle\thispagestyle{empty}}
Bruce> This is what I was hoping for. Don't know LaTeX yet.
Bruce> Got three errors, the first was:
Bruce> ! LaTeX error: no \title given
Bruce> I changed \newnewcommand to \newcommand and got:
Bruce> Command \maketitle already defined.
I should reread what I send. The right command is \renewcommand. Try
that:
\let\realmaketitle=\maketitle
\renewcommand{\maketitle}{\realmaketitle\thispagestyle{empty}}
JMarc