排版由案例分析定义的函数

排版由案例分析定义的函数

谁能建议我用 LaTeX 写出这个等式的代码?

在此处输入图片描述

答案1

你可以利用mathtools及其cases*环境。

环境cases*dcases*将第二列作为文本处理,因此您无需手动“退出”数学模式即可正确排版文本。dcases*变体在第一列中使用 displaystyle math,这对您的情况没有影响。请参阅软件包文档中的第 3.4.3 节更多细节。

如果要删除方程编号 (1),可以使用\begin{equation*} ... \end{equation*}而不是\begin{equation} ... \end{equation}

\documentclass{article}
\usepackage{mathtools}

\begin{document}
  \begin{equation}
    L =
    \begin{cases*}
      (0 + 1)^{*} & if $P = \mathit{NP}$ \\
      \phi        & otherwise
    \end{cases*}
  \end{equation}
\end{document}

输出

答案2

例如:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\[
  L =
  \begin{cases}
    (0 + 1)* & \text{if $P = \mathit{NP}$} \\
    \emptyset & \text{otherwise}
  \end{cases}
\]
\end{document}

结果

相关内容