我正在尝试在文本中写一个简单的,但每次我写的时候,都会出现<
一个倒置。我得到的是一个倒置的,有人能帮我吗?!
>
?
答案1
答案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}