答案1
您可以分别使用常规命令_
和^
作为右下标和上标,并使用\prescript
命令mathtools
作为左下标。
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
\mathbf{A} = \prescript{}{a}{\begin{bmatrix}
a_{11} & a_{12} & \cdots & a_{1n} \\
a_{21} & a_{22} & \cdots & a_{2n} \\
\vdots & \vdots & \ddots & \vdots \\
a_{m1} & a_{m2} & \cdots & a_{mn}
\end{bmatrix}_b^c}
\]
\end{document}