2

how do I to edit table's caption's name ?

enter image description here

Transformation : "Table" --->> "Tableau"

user44584
  • 131
  • 7

1 Answers1

2

You can do it with caption package:

\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}

enter image description here

Or use simply \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}