如何用乳胶制作每个章节的标题

如何用乳胶制作每个章节的标题

遗憾的是,我在学校只能使用 word。

我怎样才能使章节标题在 LaTeX 中看起来像这样?

我希望它位于页面的最顶部以节省空间。对于我正在使用的其他页面\pagestyle{plain}

我正在使用 documentclassbook和 PdfLaTeX。

理想结果

答案1

不完全确定您正在寻找什么,但您没有显示您已尝试过的内容或您的文档类。

% chaptitleprob.tex  SE 603312

\documentclass{memoir}
\usepackage{lipsum}

%%%%% changes to chapter titles
\setlength{\beforechapskip}{-2\baselineskip}  % reduce space above
\setlength{\afterchapskip}{1\baselineskip}    % reduce space below
\renewcommand{\printchaptername}{}            % don't print Chapter
\renewcommand{\chapnumfont}{\scshape\Huge}    % font for the number
\renewcommand{\chaptitlefont}{\scshape\Huge}  % font for the title
\renewcommand{\afterchapternum}{\hspace{1em}} % space between number and title

\begin{document}
\chapter{First Chapter}
\lipsum[1-5]
\end{document}

在此处输入图片描述

我让您指定要使用的字体以及数字和标题文本周围所需的阴影。

相关内容