我正在写一篇文章,需要脚注来写作者隶属关系。我采用双栏格式写作,并使用\twocolumn
,但\footnote
在此环境中添加不会在底部产生脚注。请参阅此示例:
\documentclass[10pt,twocolumn]{article}
\begin{document}
\twocolumn[
\begin{center}
Author\footnote{This doesn't work.}
\end{center}
]
Text\footnote{This works.}
\end{document}
我究竟做错了什么?
答案1
您可以使用\footnotemark
和\footnotetext{}
:
\documentclass[10pt,twocolumn]{article}
\begin{document}
\twocolumn[
\begin{center}
Author\footnotemark
\end{center}
]\footnotetext{Now this works.}
Text\footnote{This works.}
\end{document}