[Tex/LaTex] How to enlarge title font size of nomenclature

fontsizenomenclaturetable of contents

I use these codes (in preamble):

\usepackage{tocloft}
\renewcommand{\cfttoctitlefont}{\LARGE\bfseries}

That used for customize the font size of "Table of Content" to be LARGE (about 18pt). So that it will be same size as chapter title. I already used the same method for List of Figure and List of Table.

\cftloftitlefont
\cftlottitlefont

Now, I want to apply the same effect to Nomenclature, but I could not find the right code. Anyone know about it?

Best Answer

The Nomenclature is set as a regular chapter; tocloft doesn't handle other ad-hoc "List of.."s with specialized commands like \cft...titlefont. So, you can patch the chapter command momentarily or just try {\renewcommand{\Huge}{\LARGE}\printnomenclature} (note the grouping around the entire command).

\Huge is the regular size of the chapter titles (in the standard document classes), which is set in bold by default.