寻求特定章节设计的帮助

寻求特定章节设计的帮助

有谁能帮我实现图中的章节设计吗?谢谢在此处输入图片描述

我正在尝试使用 usepackage titlesec,但无法模仿图中的样式。以下是我的代码。有人能帮我修改代码以获得图中所示的样式吗?对于这些命令,如 \thechapter、\vspace,我可以在哪里找到它们的参考?

\titleclass{\chapter}{straight}
\titleformat{\chapter}[display]
{\centering\normalfont\huge\bfseries}
{\titlerule[2pt]\vspace{3pt}\titlerule[2pt]\vspace{3pt}\MakeUppercase{\chaptertitlename} \thechapter}{5pt}
{\titlerule[2pt]\vspace{6pt}\huge\MakeUppercase}

\titlespacing*{\chapter}{0pt}{0pt}{40pt}

添加:

我的乳胶模板是,\documentclass{book}并且我对@egreg关于章节设计的解决方案感到满意,但是我该怎么做才能将页眉调整到中间位置并使所有页面(无论偶数或奇数)的页眉居中并仅显示章节内容?

下图是我想要的(主要是红色圆圈) 在此处输入图片描述 但我得到的是默认来自书籍模板,见下图在此处输入图片描述在那里可以看到

  1. 标题没有居中;
  2. 奇数页和偶数页显示不同的页眉内容。

答案1

你离我并不远……

\RequirePackage{fix-cm}
\documentclass[a4paper,oneside]{book}
\usepackage{titlesec}

%\titleclass{\chapter}{straight}% it's already in the class
\titleformat{\chapter}[display]
  {%
   \filleft\normalfont\bfseries
   \vspace{-\topskip}\titlerule[2pt]%
   \vspace{1pc}%
  }
  {\fontsize{3.5cm}{0}\selectfont\thechapter}
  {5pt}
  {\vspace{6pt}\huge\MakeUppercase}
  [{\titlerule[2pt]}]
\titleformat{name=\chapter,numberless}[display]
  {%
   \filleft\normalfont\bfseries
   \vspace{-\topskip}\titlerule[2pt]%
   \vspace{1pc}%
  }
  {\fontsize{3.5cm}{0}\selectfont\vphantom{0}}
  {5pt}
  {\vspace{6pt}\huge\MakeUppercase}
  [{\titlerule[2pt]}]

\titlespacing*{\chapter}{0pt}{0pt}{40pt}

\begin{document}

\tableofcontents

\chapter{Introduction}

Text at the beginning of the chapter.
Text at the beginning of the chapter.
Text at the beginning of the chapter.
Text at the beginning of the chapter.
Text at the beginning of the chapter.

\end{document}

oneside选项仅用于在同一张图片中显示未编号和编号的章节。

如果您使用可缩放字体(不是标准字体),则不需要fix-cm

在此处输入图片描述

通过将两次出现的 替换为\filleft\filcenter您将获得以下内容。

在此处输入图片描述

相关内容