答案1
一种方法是使用:
\begin{align}
p_{i \, j} = \begin{cases} \frac{1}{|p_{i}|} & \text{if $P_{i}$ links to $P_{j}$} \\
0 & \text{otherwise} \end{cases}
\end{align}
其中align
用于在方程式周围留出间距或内联版本为:
$$ p_{i \, j} = \begin{cases} \frac{1}{|p_{i}|} & \text{if $P_{i}$ links to $P_{j}$} \\
0 & \text{otherwise} \end{cases} $$
答案2
使用包中定义的cases*
and/or并将其定义为绝对值的分隔符对:dcases?
mathtools
\abs{...}
\documentclass[12pt]{article}
\usepackage{mathtools}
\DeclarePairedDelimiter\abs{\lvert}{\rvert}
\begin{document}
\begin{equation}
p_{ij} = \begin{cases*}
\dfrac{1}{\abs{p_{i}}} & if $P_{i}$ links to $P_{j}$ \\
0 & otherwise
\end{cases*}
\end{equation}
or
\begin{equation}
p_{ij} = \begin{dcases*}
\frac{1}{\abs{p_{i}}} & if $P_{i}$ links to $P_{j}$ \\
0 & otherwise
\end{dcases*}
\end{equation}
\end{document}