答案1
\documentclass[margin=3mm, varwidth]{standalone}
\usepackage{mathtools}% for cases*, also load amsmath
\begin{document}
\begin{equation}\setlength\arraycolsep{1pt}
xxx = \begin{cases*}
\max(t,f) & if $\min(t,f) = 0$ \\
\min\left\{\begin{array}{rl}
xxx & + 1 \\
xxx & + 1 \\
xxx xxx & + 1 \\
\end{array}\right. & otherwise
\end{cases*}
\end{equation}
\end{document}
答案2
您的文字很难阅读(这就是为什么下面很可能有些字符被错误表示的原因)。但我不明白\min
在案例前面加什么。所以我想知道下部,即第二种情况,是否是列表的最小值。如果是这样,也许下面的更合适。
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{equation}
MA_{C_0f_0}(i,j)=
\begin{dcases}
\max(i,j) & \text{if}~\min(i,j)=0\;,\\
\begin{array}{@{}r@{}l@{}l@{}}
\min\bigl\{
&MA_{C_0f_0}(i-1,j)+1,\\
&MA_{C_0f_0}(i,j-1)+1,\\
&MA_{C_0f_0}(i-1,j-1)+1\bigr\}\\
\end{array}&
\text{otherwise}\;.
\end{dcases}
\end{equation}
\end{document}