正在搜索此章节样式

正在搜索此章节样式

我想使用下面截图的章节风格,但我不知道它的名字(和包装?);我已经搜索了很长时间,但找不到任何线索……我希望有人知道这种风格!问候。 这个章节样式的名称/包装是什么?

答案1

我想我(终于!)找到了一个令人满意的答案;我将它发布给那些想知道的人。

\usepackage{titlesec} % For the \titleformat
\usepackage{fancybox} % For the \ovalbox
\setlength{\fboxsep}{10pt} % Sets the padding of the boxes
\cornersize{.3} % Sets the roundness of the corners of the \ovalbox

% Syntax: \titleformat{command}[shape]{format}{label}{sep}{before}[after]
\titleformat{\chapter}
    [hang] % Places the chapter name next to the number, (default: 'display')
    {\Huge\bfseries}
    {\Ovalbox{\thechapter}}
    {10pt}
    {\Huge}
 
\titlespacing*{\chapter}{0pt}{0pt}{20pt} % Sets the margins of the chap. title block

看来这个办法很有效!

使用我自己的文档搜索章节样式的示例

相关内容