在论文标题上添加脚注

在论文标题上添加脚注

我想在论文标题中添加脚注。我可以在标题末尾添加一个星号,但在页面底部我们通常期望出现脚注的地方没有实际的脚注。相反,它仍然是 AAAI 版权信息。在此处输入图片描述在这里我附上了一个 MWE

\documentclass[letterpaper]{article}
\usepackage{aaai}
\usepackage{times}
\usepackage{helvet}
\usepackage{courier}
\frenchspacing
\setlength{\pdfpagewidth}{8.5in}
\setlength{\pdfpageheight}{11in}
\pdfinfo{
 /Title (Insert Your Title Here)
/Author (Put All Your Authors Here, Separated by Commas)}
\setcounter{secnumdepth}{0}  
\begin{document}
\title{Formatting Instructions \\for Authors Using \LaTeX{}\footnote{Example.}}
\author{AAAI Press\\
Association for the Advancement of Artificial Intelligence\\
2275 East Bayshore Road, Suite 160\\
Palo Alto, California 94303\\
}
\maketitle
\begin{abstract}
\begin{quote}
AAAI creates proceedings, working notes... 
\end{quote}
\end{abstract}


\end{document}

答案1

就是这样。下载啊啊啊http://www.aaai.org/Publications/Author/author.php

注意:需要\nocopyright在之前使用\maketitle,并在脚注中使用。正如@Bernard的评论中提到的,没有aaai包也可以正常工作(具有不同的样式,一列)。因此,如果从上面提到的链接获得(具有两列样式),则\thanks此解决方案适用。aaai.sty

在此处输入图片描述

答案2

您还可以使用此网页中描述的以下代码:

如何在 LaTeX 中添加不带编号的脚注

\footnote{A footnote with numbering}

\let\thefootnote\relax\footnotetext{A footnote without numbering}

相关内容