我的 LateX 文件中有一个>
符号。具体来说,我有这个句子:
Say I have n > 1 apples.
当使用 pdflatex 编译我的 .tex 文档时,我得到一个带有倒置问号(代替 > 符号)的 pdf。
我检查了 TeX 的数学指南,没有看到任何特殊标记>
。
http://mirrors.ctan.org/info/short-math-guide/short-math-guide.pdf
到底是怎么回事?
答案1
相关问题:小于符号(<)显示为倒置的“!”
简短的答案:
这个具体的例子应该用数学模式,因为 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}
此外,数学模式的大于号比文本符号要重一些。