我想在目录中使用一个图形(小图标)来表示一个特殊部分。您有什么建议吗?通常我用它 \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}