无法组成分数

无法组成分数

我已经尝试了很长时间,但它成功了,我有这个代码,希望你能帮助我:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{pmatrix} 
m\\
n
\end{pmatrix} = {\frac{m!}{n!(m-n)!}}

\end{document}

答案1

您需要\frac在数学模式下使用该命令:

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}% http://ctan.org/pkg/amsmath
\begin{document}
In display style
\[
  \begin{pmatrix} m \\ n \end{pmatrix} = \frac{m!}{n!(m-n)!}
\]
or inline math mode $\begin{pmatrix} m \\ n \end{pmatrix} = \frac{m!}{n!(m-n)!}$.
\end{document}

如果您尝试编写二项式表达式,最好使用\binom{m}{n}。它在两种数学样式中的格式都更好:

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}% http://ctan.org/pkg/amsmath
\begin{document}
In display style
\[
  \binom{m}{n} = \frac{m!}{n!(m-n)!}
\]
or inline math mode $\binom{m}{n} = \frac{m!}{n!(m-n)!}$.
\end{document}

相关内容