如何创建带有图标的章节标题,但上下文表中没有图标

如何创建带有图标的章节标题,但上下文表中没有图标

我想知道如何创建以下类型的章节标题 在此处输入图片描述

请注意,图像是使用图形包加载的。我尝试了以下

\section{\includegraphics[scale=0.2]{Images/introduction}\quad Introduction}

不幸的是,此代码与目录中的图像一起显示。我想要的是代码不与目录中的图像一起显示,并且图像位于部分标题的左侧。如果可以像宏一样完成此操作,我将不胜感激,因为我有一个大文档,所以我希望在有部分的地方重复此操作

答案1

原因是该LegrandOrangeBook.cls文件使用titlesec包来自定义节标题。您可以简单地将LegrandOrangeBook.cls文件中第 211 行至第 226 行的相应代码替换为以下代码:

\titleformat
    {\section} % Section type being modified
    [block] % Shape type, can be: hang, block, display, runin, leftmargin, rightmargin, drop, wrap, frame
    {\bfseries\sffamily\Large} % Format of the whole section
    {\llap{\textcolor{ocre}{\thesection}\hspace{1em}}} % Format of the section label
    {0cm} % Space between the title and label
    {\includegraphics[height=1.5ex]{example-image}\quad#1} % Code before the label
    [] % Code after the label
\titleformat
    {name=\section, numberless} % Section type being modified
    [block] % Shape type, can be: hang, block, display, runin, leftmargin, rightmargin, drop, wrap, frame
    {\bfseries\sffamily\Large} % Format of the whole section
    {\includegraphics[height=1.5ex]{example-image}\quad#1} % Format of the section label
    {0cm} % Space between the title and label
    {} % Code before the label
    [] % Code after the label

在此处输入图片描述

相关内容