\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{flalign*}
\det\bigg(\lambda I -ABC(G_1\circ G_2)\bigg)
\\
=
\left[
\begin{array}{cccccccccccccccccccc}
A(G_2)\otimes Q(G_1) \otimes I_{n_2} && G^T
\\
G &&
A(G_1)\otimes Q(G_2)\otimes I_{n_1}
\end{array}
\right].
\end{flalign*}
\end{document}
我被下面的代码难住了。我想要第一行,即
\det\bigg(\lambda I -ABC(G_1\circ G_2)\bigg)
从文档左侧开始。但问题是第一行与文档右侧对齐,这让它看起来很奇怪。
是否可以将所有内容对齐到文档的左侧?
请帮助别人。
答案1
两种可能性:
(红线表示文本区域边框)
\documentclass{article}
\usepackage{mathtools}
%---------------- show page layout. don't use in a real document!
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.15pt}
\renewcommand*\ShowFrameColor{\color{red}}
%---------------------------------------------------------------%
\begin{document}
\begin{align*}
\det\biggl(\lambda I -ABC(G_1\circ G_2)\biggr)
& = \begin{bmatrix}
A(G_2)\otimes Q(G_1) \otimes I_{n_2}
& G^T \\
G & A(G_1)\otimes Q(G_2)\otimes I_{n_1}
\end{bmatrix}.
\end{align*}
or with use of the \verb+\MoveEqLeft+ defined in the \verb+mathtools+ package:
\begin{align*}
\MoveEqLeft[4]\det\Bigl(\lambda I -ABC(G_1\circ G_2)\Bigr) \\
& = \begin{bmatrix}
A(G_2)\otimes Q(G_1) \otimes I_{n_2}
& G^T \\
G & A(G_1)\otimes Q(G_2)\otimes I_{n_1}
\end{bmatrix}.
\end{align*}
答案2
为什么要左对齐?我建议multline
在这里使用
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{multline*}
\det\bigg(\lambda I -ABC(G_1\circ G_2)\bigg)\\
=
\left[
\begin{array}{ccc}
A(G_2)\otimes Q(G_1) \otimes I_{n_2} & G^T \\
G & A(G_1)\otimes Q(G_2)\otimes I_{n_1}
\end{array}
\right].
\end{multline*}
\end{document}
答案3
您只需在代码中声明至少两个对齐列。flalign 环境不会自动在左侧对齐。
我冒昧地简化了您的代码:因为我不明白为什么数组有 20 列 – 我用更简单的bmatrix
环境替换了它。我也不明白为什么 的参数需要大括号\det
,所以我用 替换了该对\bigg( ... \bigg)
(\bigl( ... \bigr)
注意最后的 l 和 r)。
\documentclass{article}
\usepackage{amsmath}
\usepackage{showframe}
\renewcommand{\ShowFrameLinethickness}{0.2pt}
\begin{document}
\begin{flalign*}
\det\bigl(\lambda I & -ABC(G_1\circ G_2)\bigr) & &
\\[0.5ex]
& =
\begin{bmatrix}
A(G_2)\otimes Q(G_1) \otimes I_{n_2} && G^T
\\[1ex]
G &&
A(G_1)\otimes Q(G_2)\otimes I_{n_1}
\end{bmatrix}
\end{flalign*}
\end{document}