用矩阵帮助箭头和文字

用矩阵帮助箭头和文字

我想用下图这样的箭头和数学符号来排版矩阵。这个例子类似但不完全相同。有人能指点一下吗?谢谢。

数字

答案1

在此处输入图片描述

\documentclass[a4paper,12pt]{article}
\usepackage{amsmath,amssymb}


\begin{document}
\[
\raisebox{-.5pt}{$i^{\textup {th}}\, \textup{entry} \longrightarrow$}
\begin{pmatrix}
a_1\\
\vdots\\
 a_i\\
\vdots\\
a_n
\end{pmatrix}
\begin{matrix}
 \\
\longleftarrow j^{\textup {th}}\, \textup{entry}  \\
\\
\hspace{-1cm}\longrightarrow =0 \\
\end{matrix}
\]
\end{document}

相关内容