¿Qué hay de malo en esto: \renewcommand{fnum@figure}{\textsc{Figure~\thefigure}}

¿Qué hay de malo en esto: \renewcommand{fnum@figure}{\textsc{Figure~\thefigure}}

Como sugiere el título, no estoy seguro de por qué mi archivo no se compila. Aquí hay un MWE:

  \documentclass{amsart}
  \renewcommand{fnum@figure}{\textsc{Figure ~\thefigure}}
  \begin{document}
         Dude!
  \end{document}

Aquí hay una parte interesante del .logarchivo:

 ! Missing control sequence inserted.
  <inserted text> 
            \inaccessible 
 l.2 \renewcommand{fnum@figure}
                          {\textsc{Figure ~\thefigure}}
 Please don't say `\def cs{...}', say `\def\cs{...}'.
 I've inserted an inaccessible control sequence so that your
 definition will be completed without mixing me up too badly.
 You can recover graciously from this error, if you're
 careful; see exercise 27.2 in The TeXbook.

Respuesta1

Debería leerse como

\documentclass{amsart}
\makeatletter
\renewcommand{\fnum@figure}{\textsc{Figure ~\thefigure}}
\makeatother
\begin{document}
     Dude!
\end{document}

información relacionada