答案1
可能是這樣。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
a=
\left[\begin{aligned}
&2 \rightarrow \text{John}\\
&5 \rightarrow \text{Mary}\\
&7 \rightarrow \text{Ann}
\end{aligned}\right]\]
\[
a=
\begin{bmatrix}
2 &\rightarrow &\text{John}\\
5 &\rightarrow &\text{Mary}\\
7 &\rightarrow &\text{Ann}
\end{bmatrix}\]
\[
a=
\left[\begin{array}{@{}l@{\,}l@{\,}c@{}}
2 &\rightarrow &\text{John}\\
5 &\rightarrow &\text{Mary}\\
7 &\rightarrow &\text{Ann}
\end{array}\right]
\]
\end{document}