How do I rename List of Figures into Figures and List of Tables into Tables? (An automatic function in LaTeX)
\listoftables
\listoffigures
I used this to create them.
And I'm using
\documentclass[chapterprefix]{scrreprt}
How do I rename List of Figures into Figures and List of Tables into Tables? (An automatic function in LaTeX)
\listoftables
\listoffigures
I used this to create them.
And I'm using
\documentclass[chapterprefix]{scrreprt}
Do you load package babel? Then you can rename LoF and LoT using KOMA-Script command \renewcaptionname:
\documentclass{scrreprt}
\usepackage[english]{babel}
\renewcaptionname{english}{\listfigurename}{Figures}
\renewcaptionname{english}{\listtablename}{Tables}
\begin{document}
\listoffigures
\listoftables
\end{document}
scrreprt) please see my answer here: https://tex.stackexchange.com/a/83021/16550 Possible duplicate question? – Mensch Feb 28 '20 at 09:41