使用 \thanks 和 \footnote 而不使用编号/标记和线

使用 \thanks 和 \footnote 而不使用编号/标记和线

我想在标题中使用\thanks\footnote带任何编号/标记的文字。有什么办法吗?

我用:

\documentclass[letterpaper,twocolumn,10pt]{article}

根据 Alan Munn 的回答,它可以用于编号或标记,但脚注上方的行呢?

答案1

正如评论所暗示的,您使用的特定文档类可能存在一些问题,但对于常规articlescrartcl类(但不是创建标题页的类),您只需\footnotemark在序言中重新定义即可。这不会影响文档中脚注的进一步使用(我假设您仍然希望正常编号。)我还添加了代码来删除脚注规则。

\documentclass{article}
\author{An Author}
\title{A title\thanks{Some thanks}}
\renewcommand\footnotemark{}
\renewcommand\footnoterule{}
\begin{document}
\maketitle
Some text\footnote{Hello}
\end{document}

相关内容