乳胶中的条件方程

乳胶中的条件方程

我怎样才能用乳胶写出这个公式 在此处输入图片描述

答案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}

在此处输入图片描述

相关内容