\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}