我的文本中有以下部分说明。
\section{Properties of $T_{\mathrm{\lowercase{f}}}$; $\mathrm{\lowercase{f}}\overset{4}\equiv{3}$ }
当我尝试编译它时,我收到一条难以理解的错误消息。这是怎么回事?
答案1
三条建议:
\overset
在指令(该指令是“脆弱的”(在 LaTeX 特定意义上))前加上前缀\protect
。我认为您正在使用文档类,例如
book
,它在运行标题中提供以大写形式呈现的章节标题。如果是这种情况,我建议您使用可选参数来\section
提供运行标题所需的外观,并\lowercase
根据需要包含说明。可选:如果您希望在章节标题中以粗体显示数学材料,请提供
\boldmath
说明,如下例所示。
\documentclass{book} % a document class with running header
\usepackage{amsmath} % for "\overset" macro
\begin{document}
\setcounter{chapter}{3} % just for this example
\section[Properties of $T_{\mathrm{\lowercase{f}}}$;
$\mathrm{\lowercase{f}}\protect\overset{4}{\equiv}3$]%
{Properties of \boldmath$T_{\mathrm{f}}$$\mathrm{f}\protect\overset{4}{\equiv}3$}
\end{document}