方程中大括号旁边的两个语句

发布于 2024-09-29 23:54:00 字数 62 浏览 2 评论 0原文

如何用一个大括号 ({) 编写一个方程,并在大括号右侧的两行不同的行中写出两个语句?

How can I write an equation with one curly brace ({), and on the right-hand side next to the curly, two statements in two different lines?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

醉生梦死 2024-10-06 23:54:00

您可以尝试 amsmath 中的 cases env。

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}
  f(x)=\begin{cases}
    1, & \text{if $x<0$}.\\
    0, & \text{otherwise}.
  \end{cases}
\end{equation}

\end{document}

amsmath 案例

You can try the cases env in amsmath.

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}
  f(x)=\begin{cases}
    1, & \text{if $x<0$}.\\
    0, & \text{otherwise}.
  \end{cases}
\end{equation}

\end{document}

amsmath cases

泪意 2024-10-06 23:54:00

这可以在普通 LaTeX 中实现,无需任何特定的包。

\documentclass{article}
\begin{document}
This is your only binary choices
\begin{math}
  \left\{
    \begin{array}{l}
      0\\
      1
    \end{array}
  \right.
\end{math}
\end{document}

这段代码产生的东西看起来正是你所需要的。

两行前面的花括号

使用类似的代码可以获得与@Tombart 中相同的示例。

\documentclass{article}

\begin{document}

\begin{math}
  f(x)=\left\{
    \begin{array}{ll}
      1, & \mbox{if $x<0$}.\\
      0, & \mbox{otherwise}.
    \end{array}
  \right.
\end{math}

\end{document}

该代码产生非常相似的结果。

输入图像描述这里

That can be achieve in plain LaTeX without any specific package.

\documentclass{article}
\begin{document}
This is your only binary choices
\begin{math}
  \left\{
    \begin{array}{l}
      0\\
      1
    \end{array}
  \right.
\end{math}
\end{document}

This code produces something which looks what you seems to need.

curly braces in front of two lines

The same example as in the @Tombart can be obtained with similar code.

\documentclass{article}

\begin{document}

\begin{math}
  f(x)=\left\{
    \begin{array}{ll}
      1, & \mbox{if $x<0$}.\\
      0, & \mbox{otherwise}.
    \end{array}
  \right.
\end{math}

\end{document}

This code produces very similar results.

enter image description here

你曾走过我的故事 2024-10-06 23:54:00

您在寻找吗?

\begin{cases}
  math text
\end{cases}

从描述中看,这不是很清楚。但这可能就是您正在寻找的 http://en.wikipedia.org/wiki /帮助:Displaying_a_formula#Continuation_and_cases

Are you looking for

\begin{cases}
  math text
\end{cases}

It wasn't very clear from the description. But may be this is what you are looking for http://en.wikipedia.org/wiki/Help:Displaying_a_formula#Continuation_and_cases

慈悲佛祖 2024-10-06 23:54:00

为了回答 @MLT 的评论,还有一个标准 cases 环境的替代方案,实际上并不太复杂,两行都已编号。此代码:

\documentclass{article}
\usepackage{amsmath}
\usepackage{cases}

\begin{document}

\begin{numcases}{f(x)=}
  1, & if $x<0$\\
  0, & otherwise
\end{numcases}

\end{document}

生成

screenshot of output pdf

请注意,此处,数学必须由 \(...\ )$...$,至少位于每行中 & 的右侧 (参考)。

To answer also to the comment by @MLT, there is an alternative to the standard cases environment, not too sophisticated really, with both lines numbered. This code:

\documentclass{article}
\usepackage{amsmath}
\usepackage{cases}

\begin{document}

\begin{numcases}{f(x)=}
  1, & if $x<0$\\
  0, & otherwise
\end{numcases}

\end{document}

produces

screenshot of output pdf

Notice that here, math must be delimited by \(...\) or $...$, at least on the right of & in each line (reference).

一袭白衣梦中忆 2024-10-06 23:54:00

如果 cases\left\{ 没有提供您想要的合适的大括号大小,这里有一种手动控制大括号大小的方法。

\begin{math}
    \biggl\{
        \begin{array}{l}
            statement1\\
            statement2
        \end{array}
\end{math}

您可以在 \bigl\{ \Bigl\{ \biggl\{ \Biggl\{ 中选择进行调整支架尺寸从最小到最大。

不同牙套的图像

从左到右:案例 \left\{ bigl\{ Bigl\{

Here is a way to manually control the size of brace, if cases or \left\{ doesn't provide suitable brace size you want.

\begin{math}
    \biggl\{
        \begin{array}{l}
            statement1\\
            statement2
        \end{array}
\end{math}

You can choose among \bigl\{ \Bigl\{ \biggl\{ \Biggl\{ to adjust brace size from the smallest to the largest.

Image of different braces

From left to right: cases \left\{ biggl\{ Bigl\{

别低头,皇冠会掉 2024-10-06 23:54:00

或者这个:

f(x)=\begin{cases}
0, & -\pi\leqslant x <0\\
\pi, & 0 \leqslant x \leqslant +\pi
\end{cases}

Or this:

f(x)=\begin{cases}
0, & -\pi\leqslant x <0\\
\pi, & 0 \leqslant x \leqslant +\pi
\end{cases}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文