数学模式中的花括号

数学模式中的花括号

如何让花括号在数学模式下显示?当我写下以下内容时:

$ K_1 = {s_1}, K_2 = {s_2, s_3, s_4} $

括号在输出中消失。

答案1

使用。但是,由于括号内的内容可能大小\{…\}不同,因此最好使用DeclarePairedDelimitermathtools包裹

\DeclarePairedDelimiter\set\{\}

这定义了一个\set{…}命令,它接受一个可选参数:\big\Big\bigg或,它在括号前\Bigg隐式地添加了一对, &c。例如:\bigl…\bigr\set[\big]{...}

一个\set*{…}变体可免费使用,它隐式地添加了一对\left…\right

答案2

您需要转义像\{和 这样的括号\}

$K_1 = \{s_1\}, K_2 = \{s_2, s_3, s_4\}$

答案3

还可以使用\left和的动态分隔符大小调整right,如下例所示。

Calculate the first 4 terms of the sequence below, here typeset
without dynamic delimiter sizing:

\begin{equation}
\{ a_n \} = \{ -(\frac{1}{n})^n \}
\end{equation}

With dynamic delimiter sizing of the curly braces using `\left` and
`\right` the sequence looks like

\begin{equation}
\{ a_n \} = \left\{ -(\frac{1}{n})^n  \right\}
\end{equation}

Off course we can also apply this to the parenthesis

\begin{equation}
\{ a_n \} = \left\{ - \left( \frac{1}{n} \right)^n  \right\}
\end{equation}

Finally, the answer to the question is $\{ -1,1/4,-1/27,1/256,... \}$

使用动态大小排版的花括号

相关内容