When adding a chapter entry in the toc, I would like to get it as the other chapters, ie capitalized… For instance, add this line
\addcontentsline{toc}{chapter}{Test}
between these two lines of ClassicThesis.tex (around line 213 in my version):
\cleardoublepage\part{Some Kind of Manual}
\include{Chapters/Chapter01}
It tried to modify classicthesis.sty without success by changing (around line 570
\newcommand\ChapS[1]{\oldchap*{#1}}%
to
\newcommand\ChapS[1]{%
\ifpdf\oldchap*{\texorpdfstring{\spacedlowsmallcaps{#1}}{#1}}%
\else\oldchap*{\spacedlowsmallcaps{#1}}%
\fi%
}
Any help will be greatly appreciated… Thanks! :)
\addcontentslinecommand; the\chapter{}command will do that automatically. Wrapping the chapter in theunnumberedenvironment supresses the number in the chapter just as if you had donechapter*. – Alan Munn Apr 25 '11 at 17:27