Estoy usando classicthesis
el paquete y \chapter
crea títulos de capítulos con letras mayúsculas en el toc. ¿Cómo puedo cambiarlos a minúsculas?
Respuesta1
Con unclase estándarpuede cargar el paquete KOMA-Script tocbasic
y redefinirlo \spacedlowsmallcaps
después del encabezado ToC:
\usepackage{tocbasic}
\addtotoclist[book.cls]{toc}
\renewcommand*{\tableofcontents}{\listoftoc[{\contentsname}]{toc}}
\AfterTOCHead[toc]{\renewcommand\spacedlowsmallcaps[1]{#1}}
Código:
\documentclass{book}
\usepackage{tocbasic}
\addtotoclist[book.cls]{toc}
\renewcommand*{\tableofcontents}{\listoftoc[{\contentsname}]{toc}}
\AfterTOCHead[toc]{\renewcommand\spacedlowsmallcaps[1]{#1}}
\usepackage{classicthesis}
\begin{document}
\tableofcontents
\chapter{A Chapter}
\section{A Section}
\end{document}
Si estás usando unClase KOMA-Script, entonces sólo tienes que redefinir \spacedlowsmallcaps
después del encabezado ToC:
Código:
\documentclass{scrbook}
\usepackage{classicthesis}
\AfterTOCHead[toc]{\renewcommand\spacedlowsmallcaps[1]{#1}}
\usepackage{blindtext}
\begin{document}
\tableofcontents
\chapter{A Chapter}
\section{A Section}
\end{document}
Respuesta2
Simplemente deshaga lo que hizo la tesis clásica:
\renewcommand{\cftchappresnum}{\normalfont}
.
Esto va después del comando que carga classicthesis.sty.