I write in my preable the following code:
\usepackage[a4paper, inner=1.5cm, outer=3cm, top=2cm,
bottom=3cm, bindingoffset=1cm]{geometry}
\usepackage[onehalfspacing]{setspace}
\renewcommand{\figurename}{Grapheme}
\renewcommand{\listfigurename}{List of Graphemes}
\renewcommand{\tablename}{Tables}
\renewcommand{\listtablename}{List of Tables}
\begin{document}
\tableofcontents
\listoffigures
\listoftables
\chapter{Introduction}
but when I scroll to the List of Graphemes in my PDF it still says List of Figures.
Why is this happening? I want it to be saying "List of Graphemes"
I'm using Kile 2.1 in Linux mint.
\documenclass{report}and an\end{document}, things work as expected, showingList of Graphemesfor the List of Figures. – Werner Dec 06 '13 at 16:38babelpackage andenglishas main language, the correct way is\addto\captionsenglish{\renewcommand{\listfigurename}{List of Graphemes}}. – lockstep Dec 06 '13 at 16:47\renewcommand{\figurename}{Grapheme}must also be put in the argument of\addto\captionsenglish. See the linked Q&A. – lockstep Dec 06 '13 at 16:58