在第一页的左栏添加页脚 LaTeX

在第一页的左栏添加页脚 LaTeX

请有人帮我做一个通知,只出现在第一页左栏下,如附图所示在此处输入图片描述

答案1

twocolumn文章下,您可以\footnotetext[<num>]在第一列中插入。这将设置没有脚注标记的脚注。下面我将脚注设置为打印为\fnsymbol,其顺序为*, , , §, , , **, ††, ‡‡(错误),与标题\thanks

在此处输入图片描述

\documentclass[twocolumn]{article}
\usepackage{lipsum}

\title{A title}
\author{An author\thanks{Some reference to this author}}

\renewcommand{\thefootnote}{\fnsymbol{footnote}}

\begin{document}
\sloppy% Just for this example

\maketitle

\footnotetext[1]{Here is some footnote at the bottom of the first column that might reference the author.}%
\section{A section}
\lipsum[1-10]
\end{document}

相关内容