脚注水平线

脚注水平线

我正在使用眼压(物理研究所)LaTeX 课程/模板,我试图添加脚注,但它没有显示水平线。有没有办法强制执行此操作或定义新规则以确保出现水平线?下面是我正在做的一个简单示例。

\documentclass[12pt,helvetica,a4paper,final]{iopart}
\usepackage{iopams} 
\begin{document}
\maketitle

\title[Short Title]{Short Title: Subtitle}
\author{H. A.}
\section{Introduction}
Here I have an introduction \footnote{check out this note also!}.
\end{document}

答案1

文档类iopart.cls

304: \def\footnoterule{}%

删除了脚注规则。你可以从中获取定义latex.ltx

\makeatletter
\def\footnoterule{\kern-3\p@
  \hrule \@width 2in \kern 2.6\p@} % the \hrule is .4pt high
\makeatother

和平已恢复:

enter image description here

\documentclass[12pt,helvetica,a4paper,final]{iopart}

\usepackage{iopams}

\makeatletter
\def\footnoterule{\kern-3\p@
  \hrule \@width 2in \kern 2.6\p@} % the \hrule is .4pt high
\makeatother

\title[Short Title]{Short Title: Subtitle}
\author{Husni Almoubayyed}

\begin{document}

\maketitle

\section{Introduction}

Here I have an introduction \footnote{check out this note also!}.

\end{document}

一些说明:

  • 对于期刊投稿,我会避免这样的改变。

  • 基于任何你应该设置的模板\title和朋友正在执行\maketitle

相关内容