章节符号和编号

章节符号和编号

如何让符号\S出现在数字之前\section{}

答案1

您可以使用titlesec包可以轻松更改章节标题的格式。

\documentclass{article}
\usepackage{titlesec}
\titleformat{\section}{\normalfont\Large\bfseries}{\S\thesection}{1em}{}
\begin{document}
\section{A section}
\end{document}

相关内容