大括号内换行

大括号内换行

预期输出

我尝试了换行符以及括号内的 \newline 命令,但没有作用。

答案1

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
    Z_{ij} =
    \left\{
        \begin{aligned}
            |Y_{ij}-\overline{Y_i}|&, \text{ $\overline{Y_i}$ is the mean of the $i$\textsuperscript{th} group}\\
            |Y_{ij}-\widetilde{Y_i}|&, \text{ $\widetilde{Y_i}$ is the median of the $i$\textsuperscript{th} group}
        \end{aligned}
    \right\}
\]
\end{document}

在此处输入图片描述

答案2

另一种可能性:使用Bmatrix*来自的环境mathtools,它可以有一个可选参数来设置矩阵中的对齐方式(默认情况下居中):

    \documentclass{article}
    \usepackage{mathtools}

    \begin{document}

    \[
        Z_{ij} =
            \begin{Bmatrix*}[l]
                |Y_{ij}-\overline{Y_i}|, \enspace \overline{Y_i} \textup{ is the mean of the $i^{\text{th}}$ group}\\
                |Y_{ij}-\widetilde{Y_i}|,\enspace \widetilde{Y_i} \textup{ is the median of the $i^{\textup{th}}$ group}
            \end{Bmatrix*}
    \]

    \end{document} 

在此处输入图片描述

答案3

我会使用alignedat和不\left\right如图所示的(如您所见,条形图尺寸过大)。

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\[
Z_{ij}=
\left\{
\begin{alignedat}{2}
&\bigl|Y_{ij}-\bar{Y}_{i}\bigr|,   &\quad&
  \text{$\bar{Y}_{i}$ is the mean of the $i$th group} \\
&\bigl|Y_{ij}-\tilde{Y}_{i}\bigr|, &     &
  \text{$\tilde{Y}_{i}$ is the median of the $i$th group}
\end{alignedat}
\right\}
\]

\end{document}

\text请注意。请避免使用“上标 th”。它是维多利亚时代印刷术的遗物,由于某些不幸的知名文字处理程序的某些开发人员的偏好,它以某种方式复活了。

在此处输入图片描述

您展示的图片至少正确使用了\bar\tilde。无需\overline(效果不好) 或\widetilde

相关内容