Latex 中长文本的反转括号

Latex 中长文本的反转括号

如何在 Latex 中写出以下公式?基本上,我遇到了长文本的问题 在此处输入图片描述

我用了

\begin{equation}

  \max\limits_{x,\lambda,\nu} L_(x,\lambda,\nu=\left\{
  \begin{array}{@{}ll@{}}

    f(x), & \text{if}\text{if x satisfy the primal condition} \\
    \infty, & \text{otherwise}
  \end{array}\right.

\end{equation}

我有

在此处输入图片描述

答案1

环境cases*来自mathtools

\documentclass{article}
\usepackage{mathtools}

\begin{document}

\[ \theta_{\mathcal{P}}(w) = \begin{cases*}
f(w) & if $w$ satisfies primal constraints \\
0 & otherwise
  \end{cases*}
\]
\end{document} 

在此处输入图片描述

答案2

请注意,像这样的问题在这里一般不受欢迎,因为它具有do this for me问题的特征。通常你应该展示你到目前为止所做的事情。任何好的 latex 说明都应该告诉你如何构造这样的表达式。

\theta_{\mathcal{P}}(w) = 
 \begin{cases} 
   f(w) & \text{if $w$ ... } 
       \\ 
   \infty & \text{otherwise} 
 \end{cases}

答案3

如果您希望某一天使用环境array而不是最佳特定环境cases或者dcases,您可以使用这个 MWE。

在此处输入图片描述

\documentclass[12pt]{article}
\usepackage{mathtools}
\begin{document}
\begin{equation*}
\theta_{\mathcal{P}}(w) = \left\lbrace
\begin{array}{ll}
f(w) & \text{if $w$ satisfy the primal condition}\\
\infty & \text{otherwise}
\end{array}
\right.
\end{equation*}
\end{document}

相关内容