我有一个问题
\documentclass[11pt, a4paper]{article}
\title{A great title \thanks{XYZ}}
\begin{document}
\maketitle
\end{document}
给出了我想要的带有符号 (*) 的脚注,但是给出
\documentclass[11pt, a4paper, titlepage]{article}
* 改为 1。我希望标题页上有星号,而不是 1。这可能吗?
答案1
快速而肮脏的解决方案:将脚注计数器的格式更改为星号:
\documentclass[11pt, a4paper, titlepage]{article}
\title{A great title \thanks{XYZ}}
\begin{document}
\begingroup
\renewcommand\thefootnote{*}
\maketitle
\setcounter{footnote}{0}
\endgroup
\end{document}