我对使用 TeX 还很陌生,但在过去的几天里,我已经设法使用 为我的论文完成了基本设置memoir
。
我一直在探索章节标题样式https://ctan.org/tex-archive/info/MemoirChapStyles/MemoirChapStyles.pdf尝试弄清楚如何自定义章节标题布局。
我有一种想要重新创建的特定风格(见下图),但我不确定如何以这种方式定位和对齐章节编号和标题。
其主要特征是:
- 彼此相邻
- 比平时略宽一些
- 章节标题延伸到固定点的右侧,可能延伸到多行,章节号位于其左侧
答案1
以下是使用两个\parbox
es 的一个可能解决方案(更改字体和长度以满足您的需要):
\documentclass{memoir}
\newlength\chaptitlelength
\setlength\chaptitlelength{4cm}
\makeatletter
\makechapterstyle{mystyle}{%
\renewcommand{\chapnamefont}{\normalfont\Huge\itshape}
\let\chapnumfont\chapnamefont
\renewcommand{\chaptitlefont}{\normalfont\huge\scshape}
\def\printchaptername{\parbox[t]{\chaptitlelength}{\chapnamefont\@chapapp\space\chapnumfont\thechapter}}
\def\printchapternum{}
\def\afterchapternum{\space}
\def\printchapternonum{}
\def\printchaptertitle##1{\parbox[t]{\dimexpr\linewidth-\chaptitlelength-2em\relax}{%
\chaptitlefont\raggedright\scshape ##1}}
\def\afterchaptertitle{\par\nobreak\vskip \afterchapskip}
}
\makeatother
\chapterstyle{mystyle}
\begin{document}
\chapter{Introduction to my research and what it's all about}
\end{document}