如何将图形的标题更改为“图表”?

如何将图形的标题更改为“图表”?

目前我的代码是

\caption{Change in biomass in KCl group}

显示“图1:KCl组生物量变化”

但我想将其改为

“图1:KCl组生物量的变化”

有什么建议吗?谢谢

答案1

caption包与所有 LaTeX 文档类都不兼容。为了更加稳定,我只想直接修改低级宏\figurename

在此处输入图片描述

\documentclass{article} % or any other suitable document class
\renewcommand{\figurename}{Graph}

\begin{document}
\begin{figure}[ht] \caption{Change in biomass in KCl group} \end{figure}
\end{document}

答案2

另一个解决方案是使用float 包定义一个新的浮动环境,从而有可能拥有不同的图形和图表列表:

    \documentclass{article} % or any other suitable document class
    \usepackage{float}

    \newfloat{Graph}{htbp}{grf}

    \begin{document}

    \begin{Graph}[ht]
    \centering
    Fiddle Dee Dee!
     \caption{Change in biomass in KCl group} \end{Graph}

    \end{document} 

在此处输入图片描述

答案3

使用caption包来更改名称。

\usepackage{caption}
\captionsetup[figure]{name={Graph}}

第 15 页对此进行了解释caption包裹。这实际上与我的最近的答案

图片1 图片2

编辑

考虑以下 MWE。

\documentclass{article}
\usepackage{graphicx}
\usepackage{caption}
\captionsetup[figure]{name={Graph}}

\begin{document}
    \begin{figure}
        \centering
        \includegraphics{example-image}
        \caption{Caption}
        \label{fig:my_label}
    \end{figure}
\end{document}

相关内容