如何在案例环境中使下标低于最大值

如何在案例环境中使下标低于最大值

使用以下代码,最大值下标显示在最大值的右侧,而我希望它显示在下方。删除案例可以解决问题,但我仍然需要它。我该如何解决这个问题?

   \begin{equation}
      f(i)=\begin{cases}
        0, & \text{if $S_{i}$ is empty}.\\
        \max_{t_k \in S_{i}}\{f(k) + 42\}, & \text{otherwise}.
      \end{cases}
    \end{equation}

答案1

正如评论中提到的,\max\limits_{}效果很好!但是,如果你想要一个一般性的答案,请阅读这回答了(这也是我的):

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
    f(i)=\begin{cases}
        0, & \text{if $S_{i}$ is empty}.\\
        \underset{t_k \in S_{i}}{\max}\{f(k) + 42\}, & \text{otherwise}.
    \end{cases}
\end{equation}
\end{document}

在此处输入图片描述

相关内容