如何显示 \underline 内的脚注?

如何显示 \underline 内的脚注?

\footnote当它在里面时,该怎么做才能让它显示出来\underline

平均能量损失

\documentclass[11pt]{article}%
\begin{document}
\underline{Case\footnote{$\lambda$ is real eigenvalue} $\lambda\neq0$}

Where is the footnote?

\end{document}

使用编译上述内容lualatex不会产生任何错误,但不会footnote显示在页面底部。cygwin 上的 TexLive 2017。

答案1

一种方法是使用soul下划线(这还有其他优点)。

\documentclass[11pt]{article}%
\usepackage{soul}
\begin{document}
\ul{Case\footnote{$\lambda$ is real eigenvalue} $\lambda\neq0$}

The \texttt{soul} package has some nice features, e.g.\ it \ul{allows to
underline also over line and page breaks} which is something that unfortunately \underline{ordinary underline
does not}. And so on.

\end{document}

相关内容