居中显示章节编号,无章节名称

居中显示章节编号,无章节名称

如何用符号实现标题中所述的§后面跟着章节编号,但不带章节名称。感谢您的任何建议。

答案1

假设您正在使用一个不太常见的文档类,您可以通过加载包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}

相关内容