同一行中的两个条件方程

同一行中的两个条件方程

我想有条件地定义两个函数,如下所示如何用单侧花括号编写条件方程,但我想将两个方程写在同一行。有什么办法吗?

在此处输入图片描述

答案1

不需要进一步的特殊构造,只需在第一个定义后添加一些空格即可,例如\qquad

示例输出

\documentclass{article}

\usepackage{mathtools}

\begin{document}

\begin{equation*}
  w_{n}(x) =
  \begin{dcases*}
    \frac{1}{2^{n+1}(1+\mu(E_{n}))},&if \( x\in E_{n}\),\\
    0,&otherwise,
  \end{dcases*}
  \qquad
  u_{n}(x) =
  \begin{dcases*}
    \frac{\mu(E_{n})}{2^{n+1}(1+\mu(E_{n}))},&if \( x\in E_{n}\),\\
    0,&otherwise.
  \end{dcases*}
\end{equation*}

\end{document}

如果 a\qquad太多,可以减少为 a \quad。最好将标点符号作为 case 语句的一部分,而不是将其放在这些块之外。

相关内容