仅格式化节标题文本

仅格式化节标题文本

本网站上有几篇关于格式化章节标题的帖子,但我还没有看到一篇向我展示如何在不编辑默认间距的情况下编辑章节标题。我希望有类似

\section{May 10}

展示

第 16 讲(5 月 10 日)

其中 16 是章节编号,但保留旧的间距。

答案1

也许像这样的事情会起作用,使用这个titlesec包。

\documentclass{article}
\usepackage[explicit]{titlesec}

\titleformat{\section}%
            {\Large\sffamily\bfseries}% format
            {Lecture \thesection{} (#1)}%
            {0pt}% horizontal sep
            {}% before

\begin{document}
\section{May 10}
Here is the lesson material.
\section{May 11}
Here is the new and latest lesson material.
\end{document}

在此处输入图片描述

相关内容