为什么 pdflatex 不能识别我的 > 符号?

为什么 pdflatex 不能识别我的 > 符号?

我的 LateX 文件中有一个>符号。具体来说,我有这个句子:

Say I have n > 1 apples.

当使用 pdflatex 编译我的 .tex 文档时,我得到一个带有倒置问号(代替 > 符号)的 pdf。

我检查了 TeX 的数学指南,没有看到任何特殊标记>http://mirrors.ctan.org/info/short-math-guide/short-math-guide.pdf

到底是怎么回事?

答案1

相关问题:小于符号(<)显示为倒置的“!”

简短的答案:

  • 使用丰滕克包裹。
  • 使用数学模式。
  • 使用字体规格包裹。
  • 使用\textgreater。在较旧的安装中,您可能需要加载textcomp包来启用它,但在较新的版本中这不是必需的。

这个具体的例子应该用数学模式,因为 n 是一个变量。但为了完整性:

\documentclass{article}
% comment out to see inverted question mark in place of > in ``Regular'' entry.
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\begin{document}
\begin{itemize}
\item Say I have n > 1 apples (regular, with or without fontenc package).
\item Say I have \( n > 1 \) apples (math mode).
\item Say I have n \textgreater{} 1 apples (textcomp).
\end{itemize}
\end{document}

在此处输入图片描述

此外,数学模式的大于号比文本符号要重一些。

相关内容