我需要使用类似于 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}