输入 2 乘 n 矩阵(排列符号)作为内联数学,不占用太多空间

输入 2 乘 n 矩阵(排列符号)作为内联数学,不占用太多空间

我需要使用类似于 2 x n 矩阵的东西作为内联数学。如何才能实现这一点而不使线条分开?

例子:

\left(\begin{array}{cccc}
1 & 2 & \dots & N \\
i_1 & i_2 & \dots & i_N
\end{array}\right)

在此处输入图片描述

此代码的问题在于,即使用作内联数学,它占用的空间也与显示数学一样多。我希望它占用的空间不超过\frac{...}{...}\binom{...}{...}

答案1

amsmath 包中的环境smallmatrix将执行此操作。内联使用时不会占用太多空间。

\documentclass[12pt]{article}
\usepackage{amsmath}

\begin{document}
This is a permutation, represented as a $2\times n$ matrix and squeezed into a single line:
$\left(\begin{smallmatrix} 
1 & 2 & \cdots & n\\
i_1 & i_2 & \cdots & i_n
\end{smallmatrix}\right)$.
Use the smallmatrix environment to typeset it.  It will not push lines apart like the array environment would.
\end{document}

在此处输入图片描述

相关内容