Michael Logies wrote:
> >What about
> >
> > \newcommand{\myNote}[1]{%
> > [EMAIL PROTECTED]
> > \footnote{#1}}%
> > }
>
> Andre',
>
> no, that`s even worse.
As I understand it, [EMAIL PROTECTED] can only be used in preamble, so the check
has to be outside the macro definition.
Anyway, this works for me:
\makeatletter
\newif\ifdraft
[EMAIL PROTECTED]
\makeatother
\def\myNote#1{\ifdraft\footnote{#1}\fi}
Regards,
J�rgen.
