更改 classicthesis 中标题的大小

更改 classicthesis 中标题的大小

我想更改 classicthesis 包中的 section/- 和 subsectionheadings 的大小。我尝试在 classicthesis.sty 文件中编辑某些内容。其中一部分显然对标题有影响:

% sections \FloatBarrier
    \titleformat{\subsection}
        {\relax}{\textsc{\MakeTextLowercase{\thesection}}}{1em}{\spacedlowsmallcaps}
% subsections
\titleformat{\subsection}
    {\relax}{\textit{\MakeTextLowercase{\thesubsection}}}{1em}{\normalsize\itshape}

我只设法改变了大小,同时改变了整个字体,就像

\titleformat*{\section}{\LARGE\bfseries}

有什么想法吗,如何在不改变字体样式的情况下改变大小?

PS:我是个新手

答案1

该包用于titleec配置标题,因此无需编辑该classicthesis.sty文件。

这个例子将帮助你入门。

d

% !TeX TS-program = pdflatex

\documentclass[a4paper]{book}

\usepackage{classicthesis}

\usepackage{kantlipsum} % dummy text <<<<

%%********************************************** added <<<<<<<<<<<
\makeatletter
% chapters
\renewcommand*{\ct@altfont}{\LARGE\sffamily} % chapter title format <<<<<<<<<<
\DeclareFixedFont{\chapterNumber}{U}{eur}{b}{n}{80} % chapter number size,  was 50
\makeatother

% sections
\titleformat{\section}%
{\normalfont\Large\sffamily} % section title format <<<<<<<<<
{\large\textsc{\MakeTextLowercase{\thesection}}}%section number format
{1em}{\spacedlowsmallcaps}

% subsections
\titleformat{\subsection}% 
{\normalfont\sffamily\itshape}% subsection title format <<<<<<<<<<<<<
{\footnotesize\textsc{\MakeTextLowercase{\thesubsection}}} %subsection number format
{1em}{\normalsize}
%%**********************************************    

\begin{document}
    
    \chapter{Apple}
    
    1. \kant[1]
    \section{Banana}
    2. \kant[2]
    \subsection{Orange}
    4. \kant[9]
    
\end{document}

相关内容