章节标题与本书类似,使用回忆录类

章节标题与本书类似,使用回忆录类

我想使用回忆录类重新创建以下样式

在此处输入图片描述

我制作了一个 .cls 文件

\chapterstyle{veelo} \renewcommand*{\printchaptername}{} \renewcommand{\chapnumfont}{\normalfont\sffamily} \renewcommand{\chaptitlefont}{\normalfont\Huge\sffamily\bfseries}

我得到了

在此处输入图片描述

你能告诉我如何修改代码才能最接近第一张图片吗?谢谢!

答案1

第一个版本

\documentclass{memoir}
\usepackage{xcolor}


% chapter style %%%%%%%%%%%%%%%%
\renewcommand{\printchaptername}{}
\renewcommand{\printchapternum}{%
\makebox[0pt][l]{\chapnumfont \thechapter}%
\textcolor{gray}{\rule[7mm]{1.5cm}{4mm}}%
\hspace{-1.5cm}%
\rule[-3mm]{1.5cm}{2mm}%
}
\renewcommand{\afterchapternum}{}
\renewcommand{\chapnumfont}{\chaptitlefont}
\renewcommand{\chaptitlefont}{\normalfont\Huge\sffamily\bfseries}

% section style %%%%%%%%%%%

\setsecheadstyle{
\textcolor{gray}{\rule[4mm]{1.75cm}{2mm}}%
\hspace{-1.75cm}%
\rule[-2mm]{1.75cm}{1mm}%
\hspace{-1.75cm}%
\normalfont\Large\sffamily\bfseries
}



\begin{document}

\chapter{Noise in oscillators}

\section{Introduction}

\end{document}

在此处输入图片描述

第二版

\documentclass{memoir}
\usepackage{xcolor}


% chapter style %%%%%%%%%%%%%%%%
\renewcommand{\printchaptername}{}
\renewcommand{\printchapternum}{}
\renewcommand{\afterchapternum}{}
\renewcommand{\chapnumfont}{\chaptitlefont}
\renewcommand{\chaptitlefont}{\hfill\normalfont\Huge\sffamily\bfseries}
\renewcommand{\afterchaptertitle}{%
\makebox[0pt][l]{\chapnumfont \thechapter}%
\textcolor{gray}{\rule[7mm]{1.5cm}{4mm}}%
\hspace{-1.5cm}%
\rule[-3mm]{1.5cm}{2mm}
\par\nobreak\vskip \afterchapskip
}

% section style %%%%%%%%%%%

\setsecheadstyle{
\textcolor{gray}{\rule[4mm]{1.75cm}{2mm}}%
\hspace{-1.75cm}%
\rule[-2mm]{1.75cm}{1mm}%
\hspace{-1.75cm}%
\normalfont\Large\sffamily\bfseries
}



\begin{document}

\chapter{Noise in oscillators}

\section{Introduction}

\end{document}

在此处输入图片描述

相关内容