向节中添加节符号

向节中添加节符号

我想知道如何添加部分符号§,以便它显示如下。

§4 第一节

§5 第二部分

\section默认情况下,使用命令时会生成如下内容。

4 第一部分

5 第二部分

编辑:

这是一个解决方案:

\renewcommand{\thesection}{\S\arabic{section}}

但是,它还会§使用\subsection命令添加。还有其他解决方案吗?

答案1

也许最快的方法是使用titlesec包:

\documentclass{article}
\usepackage{titlesec}

\titleformat{\section}
  {\normalfont\Large\bfseries}{\S\thesection}{1em}{}

\begin{document}

\section{Test section}
\subsection{Test subsection}
\section*{An unnumbered test section}
\section{Another test section}
\subsection{Another test subsection}

\end{document}

在此处输入图片描述

相关内容