如何获得(没有 titlesec)标题编号居中及其后的符号?
\documentclass[british]{article}
\usepackage{fontspec}
\usepackage{graphicx}
\newcommand{\S}{\reflectbox{\rotatebox[origin=c]{90}{\huge\fontspec{Symbola}
答案1
这个titlesec
包对于格式化章节标题非常有用。
我无法在您的示例中插入特定符号,因此我用标准部分符号替换它。
\documentclass[british]{article}
\usepackage{fontspec}
\usepackage{titlesec}
\newcommand*{\T}{\S}
\titleformat{\section}[display]{\centering\bfseries\Large}{\Roman{section}}{\parskip}{}[\T]
\begin{document}
\addtocounter{section}{2}
\section{Cycle}
\section{Fire}
\end{document}
只需改变的定义\T
即可输出您想要的符号。