表中的减号

表中的减号

在 LaTeX 表中正确使用减号的方法是什么?我使用的减号似乎比数学模式下的减号长得多。

答案1

表格中的减号应在数学模式下排版以获得适当的大小和间距:

在此处输入图片描述

amsmath包仅在使用到的线路上才是必需的\text

\documentclass{article}
\usepackage{amsmath}% only needed for last case where \text{} is used
\begin{document}
\begin{tabular} { l c }
    minus sign outside math mode (incorrect) & -5 \\
    minus sign inside math mode  & $-5$\\
    minus sign but not for a number  & $-$foo\\
    minus sign but not for a number  & $-\text{foo}$
\end{tabular}
\end{document}

相关内容