编辑表格标题的名称

编辑表格标题的名称

我如何编辑表格标题的名称?

在此处输入图片描述

转换:“表格”--->>“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}

相关内容