答案1
我没有让你的 MWE 运行,但对于“常规”文档类(例如 article),它确实运行过。一个标准技巧是添加\vphantom
.
\documentclass[fleqn]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\left\{
\begin{aligned}
a&=\frac{b}{c} \\
a&=\vphantom{\frac{b}{c}}e
\end{aligned}
\right.
\end{equation*}
\end{document}
还要注意,mathtools
有几个针对类似场景的专门命令/环境,例如dcases
。
答案2
以下是三种可能性:
\documentclass{article}
\usepackage{bigstrut}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\left\{
\begin{aligned}
a&=\frac{b}{c} \\
a&=e\vphantom{\frac{b}{c_k}}%\\[-1ex]\mbox{}
\end{aligned}
\right.
\end{equation*}
\bigskip
\begin{equation*}
\left\{
\begin{aligned}
a&=\smash[t]{\frac{b}{c}} \\
a&=e
\end{aligned}
\right.
\end{equation*}
\bigskip
\begin{equation*}\setlength{\bigstrutjot}{2ex}
\left\{
\begin{aligned}
a&= \frac{b}{c} \\
a&=e \bigstrut[b]
\end{aligned}
\right.
\end{equation*}
\end{document}