添加脚注分隔符

添加脚注分隔符

我使用 \footnote{text} 插入了脚注,现在文本出现在页面底部,但没有将正文与脚注分开的线。如何显示它?

答案1

2446IEEEtran.cls州行

% IEEE does not use footnote rules

当提交给发布者时,他们只需撤销任何不符合要求的更改。

出于学术目的,我们可以设置脚注规则,通过复制或任何其他类的定义article.cls。然而,不应该这样做。

\documentclass{IEEEtran}
\makeatletter
\renewcommand\footnoterule{%
  \kern-3\p@
  \hrule\@width.4\columnwidth
  \kern2.6\p@}
  \makeatother
\begin{document}Choice of text
\footnote{Choice of footnote content}
\end{document}.

相关内容