\documentclass{beamer}
\begin{document}
\begin{frame}
$$\operatorname*{min}\limits{ x_1, x_2, \ldots, x_m,y_1,y_2, \ldots,
y_n }\frac{1}{1-\alpha} \int{0}^{1} \left[ \Phi (w,x_1, x_2,\ldots,
x_m,y_1,y_2, \ldots, y_n) -\lambda \right]^{+} \mathrm{d} w $$
\end{frame}
\end{document}
提问于:
浏览数:
3377
3 回答
0
使用 amsmath 提供的 substack 就可以
`\min_{\substack{\lambda,x_1,\dots,x_m \\ y_1,\dots,y_n}} \frac1{1-\alpha} \int \dots`
-
好用,感谢! – state123 2019-12-07 21:17 回复
0
texdoc lshort-zh,sec:4.3.6
amsmath 宏包还提供了 \substack,能够在下限位置书写多行表达式;subarray 环境更进一步,令多行表达式可选择居中 (c) 或左对齐 (l):
```tex
\[
\sum_{\substack{0\le i\le n \\
j\in \mathbb{R}}}
P(i,j) = Q(n)
\]
\[
\sum_{\begin{subarray}{l}
0\le i\le n \\
j\in \mathbb{R}
\end{subarray}}
P(i,j) = Q(n)
\]
```
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。