LNCS 中的章节标题样式

LNCS 中的章节标题样式

我使用的是 LNCS 样式,documentsclass llncs,无法使用章节。实际上,添加章节时,它看起来是这样的:

在此处输入图片描述

我想要做的是只更改此主要部分的样式,并保留下面的任何其他嵌套部分(子部分、子子部分、段落...)。它应该看起来像这样:

在此处输入图片描述

我尝试通过执行以下操作来更新部分命令:

\renewcommand{\thesection}{Chapter \arabic{section}}

这是我唯一想到的东西,但这实际上不是我需要的,因为它只会在章节编号前添加文本,甚至影响下面的小节和每个章节。

答案1

llncs.cls可从以下网址下载ftp://ftp.springernature.com/cs-proceeding/llncs/llncs2e.zip

titlesec

\documentclass{llncs}

\let\subparagraph\relax

\usepackage{titlesec}

\titleformat{\section}[display]
{\normalfont\huge\bfseries}{\chaptertitlename\ \thesection}{20pt}{\Huge}

\begin{document}
\section{a section}
Some text
\subsection{a subsection}
Some text again
\end{document}

在此处输入图片描述

注意

\let\subparagraph\relax

需要,否则titlesec无法加载。

相关内容