我怎样才能在书籍课程中得到这样的东西?

我怎样才能在书籍课程中得到这样的东西?

在此处输入图片描述

你好,我想要像图片中所示的内容(使用书籍类),即章节标题,我想要上面的“第十章”和“章节标题“,使用小字体(在书籍类中,默认字体大小为 \HUGE,我希望它像图片中一样小),并在两者之间留有空格;对于小节,使用比标题小一点的字体,图案为
1小节标题“(在书籍类中默认为“1.1小节标题“并且尺寸也是\HUGE)。
不知道我是否足够清楚,因为我发现很难解释,因为这个设计很简单(但有效),我无法使用 titlesec 包复制它。
任何帮助都值得感激!

答案1

由于不知道您到底想要什么尺寸和空间,我只能猜测,但以此为起点,您应该能够根据自己的喜好调整设计:

\documentclass{book}
\usepackage[T1]{fontenc}
\usepackage{titlesec,blindtext}

% For the chapter format
\titleformat{\chapter}[display]%
    {\centering\Large\bfseries}% format of chapter
    {\normalsize\normalfont\MakeUppercase{\chaptertitlename}\enskip\thechapter}% format of the label
    {.5\baselineskip}{} % space between the two
\titlespacing*{\chapter}{0pt}{25pt}{\baselineskip} % spaces around \chapter{}, {left}{before}{after}

% For the section format
\renewcommand{\thesection}{\arabic{section}}% to get rid of the chapter number
\titleformat{\section}%
    {\centering\large\bfseries}% format of section
    {\thesection.}{.5em}{}
%\titlespacing*{\section}{0pt}{beforesep}{aftersep} % If you want to change the spacing around \section{} too

\begin{document}
    \chapter{Some Chapter}
    \section{Some Section}
    \blindtext
\end{document}

在此处输入图片描述

相关内容