![Título de índice en mayúsculas con fncychap](https://rvso.com/image/286961/T%C3%ADtulo%20de%20%C3%ADndice%20en%20may%C3%BAsculas%20con%20fncychap.png)
Hola, estoy usando LyX y con \usepackage[Lenny]{fncychap} en el preámbulo.
El mosaico de TOC o Lista de índice está en minúsculas pero lo quiero en mayúsculas.
¿Qué comando y dónde debo escribir para hacer lo que quiero?
Respuesta1
Utilice tocloft
el paquete:
\documentclass{book}
\usepackage[Lenny]{fncychap}
\usepackage{tocloft}
%\renewcommand{\contentsname}{Table of contents} % change "Contents" to "Table of Contents"
\renewcommand{\cfttoctitlefont}{\center\hfill\large\bfseries\MakeUppercase} % change toc title to upper case
\renewcommand{\cftaftertoctitle}{\hfill}
%\renewcommand{\cftchapfont}{\scshape} %For uppercase TOC entries
\begin{document}
\tableofcontents
\chapter{Foo1}
Some text.
\chapter{Foo2}
Some text.
\end{document}