如何在目录中使用图片代替标题

如何在目录中使用图片代替标题

我想在目录中使用一个图形(小图标)来表示一个特殊部分。您有什么建议吗?通常我用它 \addcontentsline{toc}{section}{Name} 来引用目录。

答案1

ToC由于它是一个(特殊)文件,因此向其中写入信息基本上没有什么特别之处.tex—— 但是,与往常一样,在写入文件时,内容应该坚固耐用或使用\protect脆弱的命令,例如\includegraphics

\documentclass{article}
\usepackage{graphicx}

\begin{document}
\tableofcontents
\section{Foo}
\addcontentsline{toc}{section}{\protect\includegraphics[scale=0.2]{beeduck}}
\section{Other foo}
\end{document}

在此处输入图片描述

答案2

\documentclass{scrartcl}
\usepackage{graphicx}

\begin{document}
    \tableofcontents
    \section{Foo}
    \addsec[{\protect\includegraphics[width=1cm]{tiger}}]{}
    \section{Other foo}
\end{document}

在此处输入图片描述

相关内容