如何使用花括号对齐方程式

如何使用花括号对齐方程式

我怎样才能像这样对齐方程

在此处输入图片描述

我无法获取第二列。我已获取第一列。

    \begin{equation}\label{2.2}
  \systeme*{
  x_1^{'} = x_2,
  x_2^{'} = \frac{3}{t}x_2-x_1
  }
\end{equation}

答案1

使用dcases

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

\begin{document}

\begin{equation}\label{sensible-label}
\begin{dcases}
x_1'=x_2, & x_1(0)=10 \\
x_2'=\frac{3}{t}x_2-x_1, & x_2(0)={?}
\end{dcases}
\end{equation}

\end{document}

注意{?}或 的间距是错误的。 也是^{'}错误的,应该简单地为'

文本

答案2

对于将逗号放在中心(更靠近原始图片)的替代方法,您可以使用对齐环境并使用 微调一些列间距@{<some_spacing>},如

\documentclass{article}
\usepackage{amsmath}
\usepackage{multirow}
\begin{document}
\begin{equation}
\left\{
\begin{array}{@{}l@{\,}ll}
\dot{x}_1 = x_2 & \multirow{2}{*}{,} & x_1(0) = 10 \\
\dot{x}_2 = 0.02 x_1 + 1 & & x_2(0) = {?}
\end{array}
\right.
\end{equation}
\end{document}

在此处输入图片描述

但是,更好的方法是按照 egreg 和 use 所描述的那样cases

相关内容