等式中的单词之间没有空格

等式中的单词之间没有空格

我写了一个简单的等式,像这样

\begin{equation}
  Compress Ratio = \frac{n-u} {n} \times 100
\end{equation}

Compress但是在输出中,和之间没有“空格”,Ratio并且它们是连接在一起的。

我该如何修复它?

答案1

你应该做这个:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
 \text{Compress Ratio}=\frac{n-u} {n} \times 100
\end{equation}
\end{document}

我宁愿这样做:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
 C=\frac{n-u} {n} \times 100
\end{equation}
where $C$ denotes the compress ratio.
\end{document}

始终记住在数学环境等内排版所有数学运算$x$,并在里面放入尽可能少的文本。

答案2

\mbox{Compress Ratio}当你处于数学内部时。

相关内容