如何将索引置于 argmin 之下(使用 _ 是不够的)

如何将索引置于 argmin 之下(使用 _ 是不够的)

可能重复:
argmin 或 argmax 的命令?

如何将索引放在“argmin”下:\operatorname{argmin}_{z}

对于总和,我们可以执行以下操作:\sum\limits_{z},但它不适用于 argmin 示例。

編輯 MWE:

\begin{equation}
\label{myequation}
  F = 
  \begin{cases}
    n + b + 1 & \text{if $a \neq \emptyset$}\\
    \tilde{z} = \operatornamewithlimits{argmin}_{\tilde{z}}\operatorname{dist}(z, \tilde{z}) & \text{otherwise}
  \end{cases}
\end{equation}

答案1

用于\operatornamewithlimits{argmin}\limits_{\tilde{z}}将 az tilda 放在 argmin 下方。完整示例:

\documentclass{article}
\usepackage{amsmath}
\begin{document}

\begin{equation} 
\operatornamewithlimits{argmin}_z= \ldots
\end{equation}

\begin{equation}
\label{myequation}
  F = 
  \begin{cases}
    n + b + 1 & \text{if $a \neq \emptyset$}\\

    \tilde{z} = \operatornamewithlimits{argmin}\limits_{\tilde{z}}\operatorname{dist}(z, \tilde{z}) & \text{otherwise}
  \end{cases}
\end{equation}
\end{document} 

相关内容