答案1
答案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
。