目前我的代码是
\caption{Change in biomass in KCl group}
显示“图1:KCl组生物量变化”
但我想将其改为
“图1:KCl组生物量的变化”
有什么建议吗?谢谢
答案1
答案2
答案3
使用caption
包来更改名称。
\usepackage{caption}
\captionsetup[figure]{name={Graph}}
第 15 页对此进行了解释caption
包裹。这实际上与我的最近的答案。
编辑
考虑以下 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}