不显示花括号。

不显示花括号。

我在 Linux 机器(Ubuntu)上使用 Emacs(用于输入和编译)输入 LaTeX。如果我输入(在数学环境中)

\left\{blah blah\right\}

我根本没看到任何括号。

如果我输入

\{ blah blah \}

括号未按比例缩放。

我怎样才能解决这个问题?

编辑

肯定是输入错误或者其他什么原因,现在一切正常......

答案1

尝试像这样使用它们:

$\left\{\right\}$

您必须在数学模式下使用它们,并在括号前面加上反斜杠。

答案2

当你编译以下示例时,你将收到错误

Missing $ inserted \left

这个例子:

\documentclass[]{scrreprt}
\begin{document}
\left\{blah blah \right\}
\end{document}

您会看到错误很明显。

\documentclass[]{scrreprt}
\usepackage{amsmath}
\begin{document}
$\left\{\mbox{blah blah}\right\}$ %without amsmath

$\left\{\text{blah blah}\right\}$ %with amsmath
\end{document}

请创建一个最小示例。这样更容易使用。

\documentclass[]{scrreprt}
\usepackage{amsmath}
\begin{document}

\{ $\floor{\frac{3}{3}}$ + $\floor{\frac{3}{3}}$ + $3$ \} + 
\{$\floor{\frac{3}{3}}$ + $3$ + $0$ \} = $9$. % example with amsmath

\end{document}

相关内容