Function pmatrix

Source
pub fn pmatrix<I>(items: I) -> MathML
where I: IntoIterator<Item = MathML>,
Expand description

Renders a matrix with parentheses.

§Input

\begin{pmatrix} a & b \\ c & d \end{pmatrix}

§Output

( a b c d )