1

In fact, I want to change the name of the listoffigures but I wasn't able to do it even if I have used the appropriate command

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{array}
\usepackage[francais]{babel}
\graphicspath{ {figures/} }

\renewcommand{\listfigurename}{Liste des figures}



\begin{document}




\listoffigures

\listoftables

\clearpage


\end{document}
twimo
  • 171
  • 2
  • 10

1 Answers1

0

Use this:

\def\frenchlistfigurename{Liste des figures}

enter image description here

Also, the option name francais is deprecated. Use [french] instead, and load it with the document class.

Bernard
  • 271,350