我如何编辑表格标题的名称?
转换:“表格”--->>“Tableau”
答案1
您可以使用以下包来完成caption
:
\documentclass{article}
\usepackage{caption}
\usepackage{cleveref}
\captionsetup[table]{name=Tableau}
\begin{document}
\begin{table}[htb]
\caption{Caption here}\label{tab:mytabh}
\centering
Some table comes here
\end{table}
\end{document}
或者简单使用\renewcommand{\tablename}{Tableau}
:
\documentclass{article}
\renewcommand{\tablename}{Tableau}
\begin{document}
\begin{table}[htb]
\caption{Caption here}
\centering
Some table comes here
\end{table}
\end{document}