分段定义函数内的文本

分段定义函数内的文本

我想将文本放在分段定义函数的定义中,如下所示:

文本内联分段函数

我尝试过这个:

\begin{equation}
F_j(x, y) = 
\begin{cases}
1 & \text{if pixel (x, y) is a face pixel in I_j} \\
0, & \text{otherwise }
\end{cases}
\end{equation}

但是,我一直收到“缺少 $ 插入文本”错误。

答案1

cases*使用from 环境输入更简单mathtools:第二个对齐列自动处于文本模式。加载amsmath则无需加载mathtools

\documentclass{article}

\usepackage{mathtools}

\begin{document}

\begin{equation}
  F_j(x, y) =
  \begin{cases*}
    1 & if pixel $(x, y)$ is a face pixel in $I_j$ \\
    0, & otherwise
  \end{cases*}
\end{equation}

\end{document} 

在此处输入图片描述

答案2

\text在文本模式下设置其内容。因此,任何数学内容都需要使用$...进行设置$

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\begin{equation}
  F_j(x, y) = 
  \begin{cases}
    1  & \text{if pixel $(x, y)$ is a face pixel in $I_j$} \\
    0, & \text{otherwise }
  \end{cases}
\end{equation}

\end{document}

相关内容