LNCS 스타일, documentclass 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
로드할 수 없습니다.