使用 svmono 类(下载自http://www.springer.com/computer/lncs?SGWID=0-164-6-793341-0),我得到了一个 latex 错误“命令 \itshape 在数学模式下无效”,代码如下:
\documentclass{svmono}
\usepackage{boxedminipage}
\begin{document}
\begin{boxedminipage}[t]{4.5in}
Text\footnote{Text}
\end{boxedminipage}
\end{document}
我不知道 itshape 与这里有什么关系。如果有人知道如何修复此问题,我将不胜感激!
编辑:我认为问题可能在 boxedminipage 中,脚注的编号为“a,b,c”而不是“1,2,3”——因此 latex 尝试输入上标斜体“a”等。我仍然不知道如何解决这个问题……
答案1
这似乎是课程中的一个错误,您应该向 Springer 报告,但这是一个可能的解决方法
\documentclass{svmono}
\usepackage{boxedminipage}
\usepackage{amstext}
\let\oldthempfootnote\thempfootnote
\def\thempfootnote{\text{\oldthempfootnote}}
\begin{document}
\begin{boxedminipage}[t]{4.5in}
Text\footnote{Text}
\end{boxedminipage}
\end{document}