在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}