我想更改环境中标题的图形名称和表格名称paper
。特别是,我想将 Fig. 和 Tab. 都更改为 Figure and Table。问题在这里回答不适用于纸质文件类。
例如:
\documentclass[11pt]{article}
\renewcommand{\figurename}{hello}
\begin{document}
\begin{figure}
\caption{there}
\end{figure}
\end{document}
成功运行。然而,
\documentclass[11pt]{paper}
\renewcommand{\figurename}{hello}
\begin{document}
\begin{figure}
\caption{there}
\end{figure}
\end{document}
才不是。