如何更改LaTeX中所有数字的标题以包含前缀?例如,使所有数字显示为“补充图1”,“补充图2”,......而不是“图1”,“图2”?
感谢。
答案 0 :(得分:15)
答案是使用以下命令:
\renewcommand{\figurename}{Supplementary Figure}
答案 1 :(得分:2)
要为带有前缀' S'的标签编号,请使用:
\renewcommand{\thesection}{S\arabic{section}}
\renewcommand{\thetable}{S\arabic{table}}
\renewcommand{\thefigure}{S\arabic{figure}}
\renewcommand{\figurename}{Supplemental Material, Figure}
修改标题开头使用的文字: {{1}}
来源:https://www.stat.berkeley.edu/~paciorek/computingTips/Customizing_numbering_pages.html