Latex 数学方程式格式错误

Latex 数学方程式格式错误

我尝试将以下方程式写入 latex,但出现错误。我已将尝试的内容、其在 latex 中的结果和代码链接起来。

预期的: 在此处输入图片描述

结果:

在此处输入图片描述

代码:

Lev(x,y)\begin{cases}
& max(i,j){  if } \qquad  if min(i,j) = 0\\ 
& min\begin{cases}
& \text{ Lev(i-1, j ) + 1  }  \quad  \\ 
& \text{ Lev(i-1, j ) + 1  }  \quad  other wise\\ 
& \text{ Lev(i-1, j ) + 1  }  \quad  \\ 
\end{cases}
\end{cases}

答案1

像这样吗?

\min附言:请注意和的用法以及作为“数学运算符”\max的定义。\Lev

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\DeclareMathOperator{\Lev}{Lev}
\begin{document}
\[
\Lev(x,y)=
\begin{cases}
  \max(i,j) & \text{if $\min(i,j) = 0$}\\[1ex] 
  \min\begin{cases}
     \Lev(i-1, j ) + 1  \\ 
     \Lev(i-1, j ) + 1  \\ 
     \Lev(i-1, j ) + 1    
\end{cases} & \text{otherwise}
\end{cases}
\]
\end{document}

相关内容