次の積分を考えてみましょう。
$$\int_{\text{One line \\ Second line}} \text{Loss}\left(\text{Foo, Bar} \vert \alpha\right)$$
レンダリング:
積分の下部にOne line
と を2 行に分け、連続して配置するにはどうすればよいでしょうか。Second line
答え1
\substack
または\subarray
を使用できますamsmath
。 を使用すると、\subarray
位置合わせを制御できます。
\[ \int_{\substack{\text{One line} \\ \text{Second line}}}
\text{Loss}\left(\text{Foo, Bar} \vert \alpha\right) \]
\[ \int_{\begin{subarray}{l}\text{One line} \\ \text{Second line} \end
{subarray}} \text{Loss}\left(\text{Foo, Bar} \vert \alpha\right) \]