如何替换 \begin{figure} 中的“figure”?

如何替换 \begin{figure} 中的“figure”?

在许多期刊文章中,习惯于引用“图形”,并将其标记为图 1 等。我们如何使用替代描述?如果您想将其称为绘画 1 或构造 1 而不是图 1,该怎么办?

\documentclass{article}
\usepackage{graphicx}
\usepackage{epstopdf}   
\begin{document}

\begin{figure}[t]
\centering
\includegraphics[width=4in]{Example.eps}
\caption {Draw line $L$.}
\label{fig:Euclid}
\end{figure}

% instead would like to use something like below
\begin{construction]}[t]
\centering
\includegraphics[width=4in]{Example.eps}
\caption {Draw line $L$.}
\label{cons:Euclid}
\end{construction}
%

\end{document}

答案1

\renewcommand\figurename{Painting}

相关内容