答案1
cases
如果高大括号右侧的材料应以文本样式的数学模式排版,则使用环境dcases
;如果材料应以显示样式的数学模式排版,则使用环境。
\documentclass{article}
\usepackage{mathtools} % for 'dcases' environment
\begin{document}
\begin{align*}
f(x,\alpha,x_m) &=
\begin{cases}
\frac {\alpha x_m^\alpha} {x_i^{\alpha + 1}} & \text{if $x\ge x_m$} \\
0 & \text{otherwise}
\end{cases} \\[2ex]
f(x,\alpha,x_m) &=
\begin{dcases}
\frac {\alpha x_m^\alpha} {x_i^{\alpha + 1}} & \text{if $x\ge x_m$} \\
0 & \text{otherwise}
\end{dcases}
\end{align*}
\end{document}