\text 环境中的小于符号 ('

\text 环境中的小于符号 ('

我想使用包中的命令<在数学环境中的文本字符串中排版符号。但是,出于某种原因,它会呈现类似\textamsmath

\text{<-wrt}

¡-wrt

为什么 amsmath 会这样做,我该如何阻止它“解释”我的文本?

答案1

使用此代码:

\documentclass{article}
\usepackage{amsmath}
\usepackage[T1]{fontenc} %%% <--- NOTE THIS

\begin{document}

\begin{equation}
    \text{<-wrt}
\end{equation}

\end{document}

相关内容