如何使用 Texmaker 在 LaTeX 中获取上述矩阵?
PS 我需要矩阵作为方程式。我无法使用 LaTeX 的一般规范来获得。
答案1
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
Q_{l} = \begin{bmatrix}
I_{1} & & & & \\
& \cos\varphi_{l} & \dots & e^{jv_{l}}\sin\varphi_{l} & \\
& \vdots & I_{2} & \vdots & \\
& -e^{-jv_{l}}\sin\varphi_{l} & \dots & \cos\varphi_{l} & \\
& & & & I_{3}
\end{bmatrix}
\end{equation}
\end{document}