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無法載入。

相關內容