我尝试将文档中的章节编号设置为左侧标题和右侧两行章节标题的两倍大。编号应跨越两行,因此标题的两行与编号的大小完全相同,并且高度相同。
您可以在这里看到我迄今为止所取得的成就:
现在的问题是标题从数字的底部开始,但它应该从顶部开始。
我使用titlesec
包完成了此操作:
\titleformat{\chapter}[hang]{\Huge\bfseries\sffamily}{{\fontsize{75}{80}\selectfont\color{chpgrey}{\thechapter~|~}}}{15pt}{}
我的文档类别是scrreprt
。
有人知道我怎样才能实现我的愿望吗?
答案1
一种可能性是使用explicit
选项titlesec
和两个\parbox
es(一个用于数字和垂直规则,另一个用于标题)在底部垂直对齐:
\documentclass{scrreprt}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{xcolor}
\usepackage{linegoal}
\usepackage[explicit]{titlesec}
\colorlet{chpgrey}{gray!40}
\newcommand\chapnumfont{%
\fontsize{75}{80}\selectfont\color{chpgrey}}
\titleformat{\chapter}[hang]
{\bfseries\sffamily}
{}{0pt}
{{\chapnumfont\parbox[b]{3cm}{%
\thechapter}\vrule width3pt depth0.2ex}\hspace{15pt}%
\parbox[b]{\linegoal}{\Huge\raggedright#1}}
\begin{document}
\chapter{Test Chapter Title}
\chapter{Test Chapter Title Spanning Two Lines}
\end{document}
单行标题的图像:
跨越两行的标题图像:
根据您的需要随意调整框的宽度。