我使用运算符:+
,-
。例如$6-1$
。在之间,运算符-
变得相当大$ $
。
通常情况下,你会将运算符保留在 之间吗$$
?如果不是,你如何使它达到正常大小?
答案1
-
由于您是在数学上下文中引用的,因此请在 (La)TeX 中按原样使用它。因此,使用$-i$
而不是-$i$
。使用$k+p$
而不是$k$+$p$
。以下是一些输出示例:
\documentclass{article}
\begin{document}
If I use -$i$, the spacing around the symbol and operator is not correct.
Compare this to $-i$.
Also, when using these operators in a binary sense, it should be used as $k+p$, and not $k$+$p$.
\begin{center}
\begin{tabular}{cc}
Wrong & Correct \\ \hline
-$i$ & $-i$ \\
$k$+$p$ & $k+p$
\end{tabular}
\end{center}
\end{document}