LaTex 矩阵左对齐问题(边缘)

LaTex 矩阵左对齐问题(边缘)

我希望矩阵与左边距对齐,但根本不起作用。这是我的代码:

\begin{equation}
    E=
    \begin{pmatrix}
        1 & 0 & 0\\
        0 & 1 & 0\\
        0 & 0 & 1
    \end{pmatrix}
    \nonumber
\end{equation}

先感谢您。

答案1

两种方式;要么使用\flalign*环境amsmath,要么插入 \[ …… \]环境fleqnnccmath

\documentclass{article}

\usepackage{mathtools, nccmath}
\usepackage[showframe]{geometry}

\begin{document}

\begin{fleqn}
\[
    E=
    \begin{pmatrix}
        1 & 0 & 0\\
        0 & 1 & 0\\
        0 & 0 & 1
    \end{pmatrix}
    \nonumber
\]
\end{fleqn}

\begin{flalign*}
    E & =
    \begin{pmatrix}
        1 & 0 & 0\\
        0 & 1 & 0\\
        0 & 0 & 1
    \end{pmatrix} &
\end{flalign*}

\end{document} 

在此处输入图片描述

相关内容