如何书写符号 >

如何书写符号 >

我查看了符号列表,上面写着输入文本“>”应呈现为“>”。但是,在我的文档中,它被呈现为“¿”。

我怎样才能写出正常的“>”?

答案1

您很可能正在使用旧的OT1编码:

\documentclass{article}
\begin{document}
<Hello> \textless world\textgreater
\end{document}

结果

该示例还展示了如何使用或来排版<和。>\textless\textgreater

该问题已通过字体编码解决T1

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{lmodern}% optional
\begin{document}
<Hello> \textless world\textgreater
\end{document}

T1 字体编码的结果

相关内容