Text Formatting ⇒ Classicthesis: Roman chapter numbering
Classicthesis: Roman chapter numbering
I am trying to get classicthesis to display the chapters with roman numbering.
Unfortunately, if I try to compile this:
\documentclass{scrreprt}
\renewcommand{\thechapter}{\Roman{chapter}}
\usepackage{classicthesis-ldpkg}
\usepackage[]{classicthesis}
\begin{document}
\tableofcontents
\myChapter{One}
\myChapter{Tu}
\myChapter{Tri}
\end{document}
the table of contents does not seem to work. It writes the first digit of the roman numeral smaller than the others. Something that does not happen in the rest of the output.
I really don't see where the problem is,
Any suggestions?
Thanks
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Classicthesis: Roman chapter numbering
In the classicthesis.sty file there is a
\renewcommand{\cftchappresnum}{\scshape\MakeTextLowercase}%
which when applied to say III, gets only part of he job done printing iII. Then scshape makes the i into a small I.
So removing the \MakeTextLowercase (partially) solves the problem.
Partially because now I'd like to get all the numeral in scshape and lowercase,
any suggestions?
Re: Classicthesis: Roman chapter numbering
just add
\renewcommand{\thechapter}{\Roman{chapter}}
in classicthesis.sty, before line 384 (i.e. when it starts doing all the hacks for myChapter)