格式标题:章节编号左对齐并且标题居中?

格式标题:章节编号左对齐并且标题居中?

我该如何使用标题安全 包中我得到了类似的东西(这是一个双列文档):

在此处输入图片描述

我不知道如何让数字放在左边,标题放在中间,这可能吗?

多谢!!!

答案1

您可以将标题放在其中minipage\centering这将允许长换行标题正确换行:(感谢 egreg 改进了居中代码。)

\documentclass{article}
\usepackage{titlesec}
\usepackage{lipsum}
\titleformat{\section}
    [block]{\normalfont\bfseries\Large}{\rlap{\thesection}}{0em}
    {\hspace*{.05\textwidth}\begin{minipage}[t]{.9\textwidth}\centering}[\end{minipage}]

\begin{document}
\section{A section}
\lipsum[1]
\section{A very long section title to show that it will wrap correctly}
\lipsum[2]
\end{document}

代码输出

相关内容