如何在 LaTeX/MathJax 中的数学模式下写入 \ 符号?

如何在 LaTeX/MathJax 中的数学模式下写入 \ 符号?

我们如何\在 LaTeX 和 MathJax 的数学模式中插入符号,而无需加载实现此符号所需的任何包?

我试过

\documentclass{article}
\usepackage{amsmath}

\begin{document}
$\$
\end{document}

但程序出错,使用 等也${\}$失败\text{\}。我在 MathJax 中使用$\$,它会产生错误。

问题的背景是我想\在公式中表示(缺失的)符号(不在 SE 中)。解决方案是添加该符号,所以我想提醒用户“嘿,你忘了添加$\$在 中${1,2,3}$。应该是$\{1,2,3\}$“(当然该网站没有单引号(`))。

谢谢!!

答案1

您可能希望使用反斜杠来排除集合中的元素。为此,请使用\setminus。要获取所有不包含零的整数的集合,您可以编写

\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
$\mathbb{Z} \setminus \{ 0 \}$
\end{document}

enter image description here

也适用于 MathJax。实例:http://mathb.in/29559

答案2

我通常更喜欢使用,\smallsetminus因为斜线位于较低位置。

在此链接中http://docs.mathjax.org/en/latest/tex.html。我看到有将其与 MathJax 一起使用的可能性。

enter image description here

\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
$\mathbb{R}\smallsetminus\{0\}$
\end{document}

enter image description here

相关内容