Question: page numbers on "Part" pages

Issue #167 resolved
Cathy Wu created an issue

By default and also in all the provided examples, the "Part" pages (the pages which say only Part I, Part II, etc.) do not include page numbers.

I'm wondering if it is possible to enable page numbers on those "Part" pages in the classicthesis template?

(Consistent page numbering on all pages is required by my department.)

And thanks a lot for this project, this template is very calming and beautiful.

Comments (3)

  1. Ivo Pletikosić

    Hi Cathy. Thanks for your kind words! This is what we're doing to the part pages:

    \titleformat{\part}[display]
        {\normalfont\ct@altfont\centering\large}%
        {\thispagestyle{empty}\partname~\MakeTextUppercase{\thepart}}{1em}%
        {\color{CTtitle}\spacedallcaps}[\bigskip\normalfont\normalsize\color{Black}\begin{quote}\ctparttext@print\end{quote}]
    

    You want the page style to be "plain" instead of "empty". Let's try this:

    \makeatletter
    \titleformat{\part}[display]
        {\normalfont\ct@altfont\centering\large}%
        {\thispagestyle{plain}\partname~\MakeTextUppercase{\thepart}}{1em}%
        {\color{CTtitle}\spacedallcaps}[\bigskip\normalfont\normalsize\color{Black}\begin{quote}\ctparttext@print\end{quote}]
    \makeatother
    

    at some place in the preamble or in classicthesis-config.tex after classicthesis.sty has been loaded:

    Do not forget to send a postcard, please. :)

  2. Cathy Wu reporter

    Thank you so much for the quick response, and I certainly will! This worked beautifully!

    For posterity: I added the snippet to the end of classicthesis-config.tex. It's possible that the version I am using is slightly old, so I also needed to manually set the text color (Maroon) of the Part title:

    \makeatletter
    \titleformat{\part}[display]
        {\normalfont\ct@altfont\centering\large}%
        {\thispagestyle{plain}\partname~\MakeTextUppercase{\thepart}}{1em}%
        {\color{Maroon}\spacedallcaps}[\bigskip\normalfont\normalsize\color{Black}\begin{quote}\ctparttext@print\end{quote}]
    \makeatother
    
  3. Log in to comment