假设您正在使用一个不太常见的文档类,您可以通过加载包sectsty
、发出\sectionfont
指令和重新定义来实现排版目标\thesection
。
\documentclass{article}
\usepackage{sectsty}
\sectionfont{\centering}
\renewcommand{\thesection}{\S\arabic{section}}
\begin{document}
\noindent
abc
\hrule
\section{}
\hrule
\bigskip
\section{}
\hrule
def
\end{document}