矩阵应位于页边距之外

矩阵应位于页边距之外

我对以下矩阵有疑问,由于其复杂性,当写在页边距内时很难阅读(如下所示)。如何将矩阵扩展到页边距之外?

\begin{equation}
\renewcommand*{\arraystretch}{1.5}
\resizebox{1 \textwidth}{!} 
{$
\begin{aligned}
\begin{bmatrix}
U_{A} \\
U_{B} \\
U_{C} \\
0\\
\end{bmatrix}
&=
\begin{bmatrix}
R_A+R_{G}+j(X_{AA}+X_{G}) & R_{G}+j(X_{AB}+X_{G})& R_{G}+j(X_{AC}+X_{G}) & R_{G}+j(X_{AN}+X_{G}) \\
R_{G}+j(X_{BA}+X_{G}) & R_B+R_{G}+j(X_{BB}+X_{G})  & R_{G}+j(X_{BC}+X_{G}) & R_{G}+j(X_{BN}+X_{G}) \\
R_{G}+j(X_{CA}+X_{G}) & R_{G}+j(X_{CB}+X_{G})  & R_C+R_{G}+j(X_{CC}+X_{G}) & R_{G}+j(X_{CN}+X_{G})\\
R_{G}+j(X_{NA}+X_{G}) & R_{G}+j(X_{NB}+X_{G})  & R_{G}+j(X_{NC}+X_{G}) & R_N+R_{G}+j(X_{NN}+X_{G})\\
\end{bmatrix}
\begin{bmatrix}
I_{A} \\
I_{B} \\
I_{C} \\
I_{N} \\
\end{bmatrix}\\
&= 
\begin{bmatrix}
Z_{AA} & Z_{AB}& Z_{AC}& Z_{AN}  \\
Z_{BA} & Z_{BB}& Z_{BC}& Z_{BN}  \\
Z_{CA} & Z_{CB}& Z_{CC} & Z_{CN} \\
Z_{NA} & Z_{NB}& Z_{NC} & Z_{NN} \\
\end{bmatrix}
\begin{bmatrix}
I_{A} \\
I_{B} \\
I_{C} \\
I_{N} \\
\end{bmatrix}
= Z_{ABC} \begin{bmatrix}
I_{A} \\
I_{B} \\
I_{C} \\
\end{bmatrix}\\
\end{aligned}
$}
\end{equation}

答案1

使用\resizebox应该是最后的手段。我相信,如果你使用大矩阵中常用术语的简写,你会得到更好的呈现:

\documentclass{article}
\usepackage{amsmath,graphicx}

\begin{document}

\begin{equation}
\begin{aligned}
\begin{bmatrix}
U_{A} \\
U_{B} \\
U_{C} \\
0\\
\end{bmatrix}
&=
\begin{bmatrix}
R_A+T_{AA} & T_{AB} & T_{AC} & T_{AN} \\
T_{BA} & R_B+T_{BB} & T_{BC} & T_{BN} \\
T_{CA} & T_{CB} & R_C+T_{CC} & T_{CN} \\
T_{NA} & T_{NB} & T_{NC} & R_N+T_{NN}
\end{bmatrix}
\begin{bmatrix}
I_{A} \\
I_{B} \\
I_{C} \\
I_{N} \\
\end{bmatrix}\\
&= 
\begin{bmatrix}
Z_{AA} & Z_{AB}& Z_{AC}& Z_{AN}  \\
Z_{BA} & Z_{BB}& Z_{BC}& Z_{BN}  \\
Z_{CA} & Z_{CB}& Z_{CC} & Z_{CN} \\
Z_{NA} & Z_{NB}& Z_{NC} & Z_{NN} \\
\end{bmatrix}
\begin{bmatrix}
I_{A} \\
I_{B} \\
I_{C} \\
I_{N} \\
\end{bmatrix}
= Z_{ABC} \begin{bmatrix}
I_{A} \\
I_{B} \\
I_{C} \\
\end{bmatrix}
\end{aligned}
\end{equation}
where
\[
T_{hk}=R_G+j(X_{hk}+X_G)
\]

\end{document}

enter image description here

相关内容