我想写的是
if N+1 > N we do sigma (all the N) / the length of the array
对于较大的符号我使用
If N+1 \textgreater N
但它显示如下
if N+1 >N
大于号和 N 之间没有空格
关于西格玛,我\sum N / Length of the array
但似乎不正确,输出是正确的,但我得到了缺少符号的错误
答案1
我不太明白你想输入什么。在我的 MWE 中,我只是展示了一些可能性,并希望其中一种能满足您的需求。
您描述的缺少空格的问题是由于命令 ( \textgreater{}
) 后面缺少括号造成的。您可以阅读一些 LaTeX 文档,例如这(2 MB)以便了解为什么会发生这种情况。
% arara: pdflatex
\RequirePackage{fix-cm} % fixes font size substitutions caused by xfrac
\documentclass{article}
\usepackage{mathtools}
\usepackage{xfrac}
\begin{document}
If $N+1 > N$ we do:
\[\sum_N^\text{Length of the array}\]
or:
\[\sum\frac{N}{\text{Length of the array}}\]
or in text maybe $\sum\sfrac{N}{\text{Length of the array}}$
If we want to use \verb+\textgreater+ we have to write it like $N+1$ \textgreater{} $N$
\end{document}