Function mathml_core::helpers::pmatrix

source ·
pub fn pmatrix<I>(items: I) -> MathMLwhere
    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 )