将指数和数字对齐

将指数和数字对齐

我尝试使用对齐将指数与下方的正常数字对齐。但是我无法使用指数中的 & 来判断其应对齐的位置。

期望的输出应如下所示:

期望输出

我当前的解决方案如下:

\begin{align}
f(x)=P(X=x) &= \begin{cases}\frac{\lambda^x}{x!}e&^{-\lambda},\quad x \in \ 
{0, 1, \dots\}\\ &0,\quad \text{sonst} \end{cases} \label{eq:poisson}
\end{align}

结果是:

电流输出

我知道我需要在 lambda 前面放置 & 符号,但一旦我尝试这样做,代码就无法再正确编译。有没有办法在指数中使用 & 命令?

非常感谢

答案1

我对我的偏好毫不怀疑:

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

\begin{document}

\begin{equation}
f(x)=P(X=x)=
\left\{
\begin{aligned}
\frac{\lambda^x}{x!}e&^{-\lambda} && x\in\{0,1,\dotsc\} \\
&0 && \text{sonst}
\end{aligned}
\right.
\end{equation}

\begin{equation}
f(x)=P(X=x)=
\begin{dcases}
\frac{\lambda^x}{x!}e^{-\lambda} & x\in\{0,1,\dotsc\} \\
0 & \text{sonst}
\end{dcases}
\end{equation}

\end{document}

在此处输入图片描述

当然是后者。

顺便说一句,不要将其用于align单个方程式。

相关内容