删除附录标题中附录字母和图号之间的句点

删除附录标题中附录字母和图号之间的句点

report课堂上,图片标题显示为图 A.1. 我正在尝试LaTeX输出图 A1而是(即删除字母和数字之间的句点)。

答案1

我建议你跑

\renewcommand\thefigure{\thechapter\arabic{figure}}

执行后\appendix。当然,如果这种编号样式应该应用于figure文档中所有地方的标题,而不仅仅是附录中的标题(这可能是一个相当糟糕的想法,但是......),请务必\renewcommand\thefigure{\thechapter\arabic{figure}}在序言中运行。


完整的测试文档:

在此处输入图片描述

\documentclass{report}
\begin{document}
\appendix
\renewcommand\thefigure{\thechapter\arabic{figure}}

\stepcounter{chapter} % increment the 'chapter' counter (to '1')
\begin{figure}[h] \caption{Hello} \label{fig:hello} \end{figure}
A cross-reference to figure \ref{fig:hello}.
\end{document}

相关内容