答案1
drcases
环境(由包提供mathtools
)和普通环境的组合tabular
可以完成工作:
\documentclass{article}
\usepackage{mathtools} % for 'drcases' environment
\begin{document}
\[
\begin{drcases}
g^l_{ij} = \frac{\partial e}{\partial w^l_{ij}} = \dots\\
w^l_{ij} = \dots
\end{drcases}
\qquad
\begin{tabular}{@{}l}
for $l=\dots$\\
for $i=\dots$\\
for $j=\dots$
\end{tabular}
\]
\end{document}
答案2
aligned
和的组合alignedat
,使所有等号对齐。
\documentclass{article}
\usepackage{amsmath}
\newcommand{\pder}[2]{\frac{\partial #1}{\partial #2}}
\begin{document}
\[
\left.
\begin{aligned}
g_{ij}^l &= \pder{e}{w_{ij}^l} = \mathcal{A}(I_i^l)\delta_i^{l+1}
\\[2ex]
w_{ij}^l &= w_{ij}^l-rg_{ij}^l
\end{aligned}
\right\}
\qquad
\begin{alignedat}{2}
&\text{for} &\quad l &= 1,2,3,\dots, L,\\
&\text{for} & i &= 0,1,2,\dots, N^{l+1},\\
&\text{for} & j &= 1,2,3,\dots, N^{l+1}.
\end{alignedat}
\]
\end{document}
左侧底部的等式有可疑,请检查一下。
答案3
与 Mico 的方法类似,但等号对齐。
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{align*}
\left.\begin{aligned}
g_{ij}^i &=\frac{\partial e}{\partial w_{ij}^I}=A(I_i)\delta^{\ell+1}_j\\
w_{ij}^i &=w_{ij}^\ell-r\,g_{ij}^\ell\\
\end{aligned}\right\}\qquad
\begin{array}{l}
\text{for $\ell=1,2,3,\dots L$,}\\
\text{for $i=0,1,2,\dots N^{\ell+1}$,}\\
\text{for $j=1,2,3,\dots N^{\ell+1+2}$}
\end{array}
\end{align*}
\end{document}