章节标题旁边的致谢注释

章节标题旁边的致谢注释

我在论文中使用宏文件。我想在每一章中添加致谢注释。当我使用 \chapter[title]{title\footnote{aa}} 时,它可以工作,但标题旁边显示数字“1”。我想将其设置为星号等特殊标记。我该怎么做?

谢谢!

答案1

\documentclass[a5paper,12pt]{scrbook}
\def\chapterthanks#1{\renewcommand{\thefootnote}{$\heartsuit$}%
\addtocounter{footnote}{-1}% 
\footnote{#1}}
\begin{document}
\chapter[title]{title\chapterthanks{aa}}
Bla bla \footnote{bbb}...
\end{document}

当然,您可以随意改变,\heartsuit或者\ast任何更严重的情况。

相关内容