Estou usando classicthesis
o pacote e ele \chapter
cria títulos de capítulos com letras maiúsculas no toc. Como posso alterá-los para letras minúsculas?
Responder1
Com umclasse padrãovocê pode carregar o pacote KOMA-Script tocbasic
e redefinir \spacedlowsmallcaps
após o título 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}
Se você estiver usando umClasse KOMA-Script, então você só precisa redefinir \spacedlowsmallcaps
após o título do 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}
Responder2
Basta desfazer o que a tese clássica fez:
\renewcommand{\cftchappresnum}{\normalfont}
.
Isso vem depois do comando que está carregando classicthesis.sty.