如何将章节号右对齐?

如何将章节号右对齐?

有没有办法将章节号右对齐(不带 CHAPTER 字样!),将章节标题左对齐?章节标题必须位于章节号下方

这是我使用的部分代码(章节编号和标题均右对齐):

\usepackage{titlesec}

\titleformat{\chapter}[display]
{\normalfont\Huge\bfseries\color[RGB]{0,120,182}}
{\thechapter}{1em}

PS: 如果重要的话我使用 Sphinx 来生成乳胶输出

提前致谢

答案1

您可以\filleft在之前使用\thechapter

\documentclass{book}
\usepackage{titlesec}
\usepackage{xcolor}
\usepackage{lipsum}% just to generate text for the example

\titleformat{\chapter}[display]
  {\normalfont\Huge\bfseries\color[RGB]{0,120,182}}
  {\filleft\thechapter}{1em}{}

\begin{document}

\chapter{Test chapter}
\lipsum[2]

\end{document}

在此处输入图片描述

相关内容