如何添加外部符号(例如wineglass.png
)用作脚注符号?我想用\thanks
替换标准。*
wineglass.png
我目前正在尝试
\documentclass[a4paper, leqno,xcolor=dvipsnames]{scrartcl}
\usepackage{footmisc}
\newcommand*\wine{\includegraphics{wineglass}}
\DefineFNsymbols*{woexl}{\wine\dagger\ddagger\S\P\|%
{**}{\dagger\dagger}{\ddagger\ddagger}}
\makeatletter
\setfnsymbol{woexl}
\makeatother
\title{Title}
\author{Author\thanks{Institution}}
\begin{document}
\maketitle
\end{document}
答案1
确保您\protect
的\includegraphics
并适当调整其大小:
\documentclass{scrartcl}
\usepackage{footmisc,graphicx}
\newcommand*\wine{\protect\includegraphics[height=.5em]{example-image}}
\DefineFNsymbols*{woexl}{\wine\dagger\ddagger\S\P\|%
{**}{\dagger\dagger}{\ddagger\ddagger}}
\setfnsymbol{woexl}
\title{Title}
\author{Author\thanks{Institution}}
\begin{document}
\maketitle
\end{document}