LaTeX < 显示颠倒吗?

LaTeX < 显示颠倒吗?

我正在尝试在文本中写一个简单的,但每次我写的时候,都会出现<一个倒置。我得到的是一个倒置的,有人能帮我吗?!>?

答案1

使用 T1 编码:

\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}
 < and >
\end{document}

在此处输入图片描述

答案2

命令\textless和专为文本模式下的和\textgreater的使用而设计。<>

\documentclass{article}
\begin{document}
There are also \textgreater\ and \textless
\end{document}

答案3

免责声明:这是一个解决方案,但不是更好的解决方案。

编辑:参见 Christian Hupfer 的评论。

使用内联数学:

\documentclass{article}

\begin{document}
\ensuremath{<} is not < .
\end{document}

如果你愿意,可以定义一个命令:

\documentclass{article}

\begin{document}
\newcommand{\foo}{\ensuremath{<}}
\ensuremath{<} is not < .

But \foo{} is \ensuremath{<} !
\end{document}

相关内容