带有自定义标题的多行部分标题

带有自定义标题的多行部分标题

我如何获得此类章节标题:

补充说明1
标题名称示例

目录中只显示章节名称,而不显示“补充说明”:

1 一些标题名称的示例................................1

编辑:由于我的上述描述显然不够清楚,下面是我想要的一个渲染示例:

在此处输入图片描述

我已经有了:

% custom section designations
\makeatletter
\renewcommand{\@seccntformat}[1]{Supplementary Note \csname the#1\endcsname:} % https://tex.stackexchange.com/a/693618
\makeatother

但这不允许我正确地打破标题。

答案1

这对你有用吗?

\documentclass{article}
\usepackage{titlesec}
\usepackage{lipsum}
\titleformat{\section}[display]{\large\bfseries\filright}{\bfseries Supplementary Note \thesection}{0pt}{}
\begin{document}

\tableofcontents

\section{Introduction}

\lipsum[1]

\end{document}

输出

相关内容