如何不在章节编号中显示章节编号(titlesec)

如何不在章节编号中显示章节编号(titlesec)

我用它titlesec来操作标题、章节和其他内容。下面是我使用的:

\titleformat{\chapter}
    [frame]
    {\normalfont}
    {\filright \footnotesize \enspace LP \thechapter \enspace}
    {6pt}
    {\Large \bfseries \filcenter }

\titleformat{\section}%
  [hang]
  {\Large\bfseries\color{bleu}}
  {\thesection}
  {1em}
  {}

但是在我的 PDF 中,各节的编号为 1.1,然后是 1.2 等等...我想隐藏章节编号,只保留 1 个节 1;2 个节 2 等等...

我怎样才能做到这一点并保留其余部分?

答案1

默认情况下,章节编号将按章节进行,并在表示中包含章节编号。在 LaTeX 术语中,这是使用

\renewcommand{\thesection}{\thechapter.\arabic{section}}

在上面的构造中,\thesection是章节号的呈现方式,并包括\thechapter(章节号的呈现方式)。因此,要从章节号中删除章节,请添加

\renewcommand{\thesection}{\arabic{section}}

你的序言。

相关内容