-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
Description
Será que não tem como eliminar todos esses \iftoggle
dos comandos opcionais? Não poderia ser feito:
\renewcommand\coorientador[1]{\renewcommand\@coorientador{#1}}
\newcommand\@coorientador{ }
ao invés de:
\newtoggle{coorientador}
\togglefalse{coorientador}
\renewcommand\coorientador[1]{%
\renewcommand\@coorientador{#1}
\toggletrue{coorientador}
}
\newcommand\@coorientador[1]{\togglefalse{coorientador}}
e no texto precisar ter uma checagem extra:
\iftoggle{coorientador}{\textbf{Coorientador:}...}
?