假设以下 MWE
\documentclass[12pt]{scrartcl}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{aligned}
y_{it} = \beta_0 + \beta_1 \times X \times W + \alpha_i + \epsilon_{it} + \mathbf{Z}, \ \ t \in \{2003;2017\} \\ i \in \{1;N\}
\end{aligned}
\end{equation}
\end{document}
我想将长方程定位到另外两个方程的中间,就高度而言。
这意味着下划线的等式应该向下移动,如虚线所示。
答案1
您可以使用数组:
\documentclass[preview]{standalone}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{aligned}
y_{it} = \beta_0 + \beta_1 \times X \times W + \alpha_i + \epsilon_{it} + \mathbf{Z}, \ \
\begin{array}{l}
t \in \{2003;2017\} \\
i \in \{1;N\}
\end{array}
\end{aligned}
\end{equation}
\end{document}
答案2
您的主要方程不应该在中aligned
,只有一个方程,并且没有对齐点,您只需要一个多行构造,例如aligned
对于边条件:
\documentclass[12pt]{scrartcl}
\usepackage{amsmath}
\begin{document}
\begin{equation}
y_{it} = \beta_0 + \beta_1 \times X \times W + \alpha_i + \epsilon_{it} + \mathbf{Z},
\quad
\begin{aligned}
&t \in \{2003;2017\} \\
&i \in \{1;N\}
\end{aligned}
\end{equation}
\end{document}