如何将图形/图像放置在目录元素旁边

如何将图形/图像放置在目录元素旁边

我正在寻找将图形/图像放置在目录章节元素旁边的方法。

目前我只找到了一种方法将其放在其正下方,而不是放在章节号之前或页码之后。 \addstufftotoc{\nobreak\protect\includegraphics[height=1\baselineskip]{Image/en.jpg}\par}

TOC 元素

答案1

在这里我使用在目录中指定单独标题的功能来添加图形(如果需要),通过搭接。

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\tableofcontents

\noindent\hrulefill

\section{Normal section}

\section[{\llap{\includegraphics[height=\baselineskip]{example-image}%
  \kern20pt}Left of section number}]{Left of section number}

\section[{Right of title \includegraphics[height=\baselineskip]{example-image}}]%
  {Right of title}

\section[{Right of page  number\hfill\rlap{\kern20pt\includegraphics%
  [height=\baselineskip]{example-image}}}]{Right of page  number}
\end{document}

在此处输入图片描述


补充

\chapter为了回应关于在课堂上使用book以及图像垂直对齐的评论,我提供了额外的 MWE:

\documentclass[a4paper,openright]{book}
\usepackage{graphicx}
\DeclareRobustCommand\addimg[1]{\llap{\raisebox{-\dp\strutbox}%
  {\includegraphics[height=\baselineskip]{#1} \kern20pt}}}
\begin{document}
\tableofcontents

\noindent\hrulefill

\chapter[\addimg{example-image}Left of section number]{Left of section number}

\chapter[\addimg{example-image}Machines d'audit et processus MCO et MCS]{Machines d'audit et processus MCO et MCS}
\end{document}

在此处输入图片描述

答案2

我回到这里是因为我没有注意到图像出现在使用它的标题上:在此处输入图片描述

如果可能的话,我想删除该图像或将其放在一边。

相关内容