答案1
我建议您熟悉和pmatrix
环境align*
。在下面的代码中,我使用\xi
而不是#
来表示通用占位符变量。
\documentclass{article}
\usepackage{mathtools} % provides '\shortintertext' macro, loads 'amsmath' package
\begin{document}
\begin{align*}
T_6 &= \begin{pmatrix}
c_6 \xi_6+s_6\xi_3 & c_6 \xi_3-s_6\xi_6 &
s_5\xi_8+c_1c_5s_{23} & c_1\xi_1 \\
-c_6\xi_5-s_6\xi_4 & s_6\xi_5-c_6\xi_4 &
c_5s_1s_{23}-s_5\xi_7 & s_1\xi_1 \\
\dots & \dots & \dots & \dots \\
\dots & \dots & \dots & \dots
\end{pmatrix}
\shortintertext{where}
\xi_1 &= a_1+a_2c_2+a_3c_{23}+d_4s_{23}\\
\xi_2 &= c_{23}s_5+c_4c_5s_{23}\\
\xi_3 &= \dots
\end{align*}
\end{document}