When to use Parenthesized Matrix
Create a matrix with parentheses In source, start from the exact \begin{pmatrix}...\end{pmatrix} command instead of imitating the rendered glyph with Unicode characters or manual spacing. This keeps the expression editable and gives the renderer enough structure to apply mathematical spacing correctly.
Syntax
\begin{pmatrix}...\end{pmatrix}The documented syntax belongs to amsmath. Keep every required argument, brace pair, and environment boundary intact when moving the command between an editor, Markdown processor, notebook, or publishing system.
Example
\begin{pmatrix}a&b\\c&d\end{pmatrix}Rendered output
parenthesized matrix
Copy and compatibility checks
- Copy
\begin{pmatrix}...\end{pmatrix}exactly; changing its case or removing a leading backslash can turn it into plain text. - Confirm that the destination loads amsmath before relying on this command.
- Render the example once, then inspect grouping, limits, scripts, and spacing before publishing.