再会,
我必须更改附录中图形名称(和标题)的字体大小。尝试这个:
\makeatletter
\renewcommand{\appendix}
{%
% another commands...
\g@addto@macro\appendix{\renewcommand{\thefigurename}{\large \thefigurename \normalsize}}
%...
}
\makeatother
答案1
以下是两种方法
\makeatletter
\g@addto@macro\appendix{\let\oldfigurename\figurename
\renewcommand{\figurename}{\large \oldfigurename}}
\makeatletter
或者
\makeatletter
\renewcommand{\appendix}
{%
% another commands...
\let\oldfigurename\figurename
\renewcommand{\figurename}{\large \oldfigurename}
%...
}
\makeatother
笔记
没有命令\thefigurename
请勿\g@addto@macro\appendix
在室内使用\appendix