在一行中获取两个矩阵

发布于 2024-08-16 14:00:57 字数 259 浏览 4 评论 0原文

我试图让这些出现在同一行但没有成功,我的编码是

\begin{equation}
P^+=\[ \left( \begin{array}{ccc}
1 & 0\\
0 & 0\end{array} \right)\]
P^-=\[ \left( \begin{array}{ccc}
0 & 0\\
0 & 1\end{array} \right)\]
\end{equation} 

欢迎任何提示或建议

im trying to get these to appear in the same line without any success, my coding is

\begin{equation}
P^+=\[ \left( \begin{array}{ccc}
1 & 0\\
0 & 0\end{array} \right)\]
P^-=\[ \left( \begin{array}{ccc}
0 & 0\\
0 & 1\end{array} \right)\]
\end{equation} 

any hints or suggestions would be welcome

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

本宫微胖 2024-08-23 14:00:57

去掉所有的 \[\],并在它们之间添加一些空格:

\begin{equation}
P^+= \left( \begin{array}{ccc}
1 & 0\\
0 & 0\end{array} \right)\qquad
P^-= \left( \begin{array}{ccc}
0 & 0\\
0 & 1\end{array} \right)
\end{equation}

Get rid of all the \[ and \], and add some space between them:

\begin{equation}
P^+= \left( \begin{array}{ccc}
1 & 0\\
0 & 0\end{array} \right)\qquad
P^-= \left( \begin{array}{ccc}
0 & 0\\
0 & 1\end{array} \right)
\end{equation}
瑶笙 2024-08-23 14:00:57

借助 AMS-LaTeX 包,您可以使用 更方便地完成此任务对齐pmatrix环境:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
P^+ &= \begin{pmatrix}
    1 & 0 \\
    0 & 0
\end{pmatrix}
&
P^- &= \begin{pmatrix}
    0 & 0 \\
    0 & 1
\end{pmatrix}
\end{align}
\end{document}

With the AMS-LaTeX package, you can accomplish this task more conveniently with the align and pmatrix environments:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
P^+ &= \begin{pmatrix}
    1 & 0 \\
    0 & 0
\end{pmatrix}
&
P^- &= \begin{pmatrix}
    0 & 0 \\
    0 & 1
\end{pmatrix}
\end{align}
\end{document}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文