
Как следует из названия, я не уверен, почему мой файл не компилируется. Вот MWE:
\documentclass{amsart}
\renewcommand{fnum@figure}{\textsc{Figure ~\thefigure}}
\begin{document}
Dude!
\end{document}
Вот интересная часть файла .log
:
! 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.
решение1
Это должно читаться как
\documentclass{amsart}
\makeatletter
\renewcommand{\fnum@figure}{\textsc{Figure ~\thefigure}}
\makeatother
\begin{document}
Dude!
\end{document}