我想设计一个类似于下图的章节标题。我喜欢在数字和章节名称之间加一条线,并将章节名称左对齐。我正在使用文档类book
。有什么想法可以做到这一点吗?
答案1
您可以使用以下软件包构建自己的章节风格titlesec
:
\documentclass{report}
\usepackage[explicit]{titlesec}
\usepackage{lipsum}
\usepackage{type1cm}
\usepackage{xcolor}
\titleformat{\chapter}[display]
{\normalfont\Large\rmfamily}
{\sffamily\flushright\fontsize{60}{0}\textbf{\textcolor{black!20}{{\Huge\chaptername}~\thechapter\vskip0pt\rule{\textwidth}{2pt}}}}{0pt}
{\flushleft\fontsize{30}{0}{#1}\vskip60pt}
\titlespacing*{\chapter}
{0pt}{-40pt}{0pt}
\begin{document}
\chapter{Enjoy the whitespace}
\lipsum[1]
\end{document}
该type1cm
包是字体大小所必需的。