答案1
cases
可以正常水平连接:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
p_n =
\begin{cases}
x_n, & \text{ if } x_n \ge 0 \\
0, & \text{ if } x_n < 0
\end{cases} \qquad \text{and} \qquad
m_n =
\begin{cases}
-x_n, & \text{ if } x_n \le 0 \\
0, & \text{ if } x_n > 0
\end{cases}
\end{equation}
\end{document}
答案2
我不太愿意回答这类问题do-it-for-me
……但因为阿博阿马尔是善良的灵魂:)并提供MWE,我将利用他的解决方案来展示可用的替代方案mathools
:
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{equation}
p_n =
\begin{cases*}
x_n, & if $x_n \ge 0$ \\
0, & if $x_n < 0$
\end{cases*}
\qquad \text{and} \qquad
m_n =
\begin{cases*}
-x_n, & if $x_n \le 0$ \\
0, & if $x_n > 0$
\end{cases*}
\end{equation}
\end{document}