我想在等式中输入“左引号”和“右引号”。我试过了
$P(x):`` \forall x \in \mathbb{R}, \, x^2 > 4 \Rightarrow x > 2. ``$
我明白了
结束符号不正确。如何排版?
答案1
\documentclass[preview,border=12pt]{standalone}
\usepackage{amsmath,amssymb}
\begin{document}
$P(x):\text{``$\forall x \in \mathbb{R}, \, x^2 > 4 \Rightarrow x > 2$.''}$
\end{document}
建议
这只是我的个人喜好。
``
在 之后和 之前添加空格''
。
\documentclass[preview,border=12pt]{standalone}
\usepackage{amsmath,amssymb}
\begin{document}
$P(x):\text{``~$\forall x \in \mathbb{R}, \, x^2 > 4 \Rightarrow x > 2$~'' is true.}$
\end{document}
答案2
最简单的一个是,
$P(x):``\forall x \in \mathbb{R}, \, x^2 > 4 \Rightarrow x > 2."$
或者如果你想使用两个单引号,
$P(x):`` \forall x \in \mathbb{R}, \, x^2 > 4 \Rightarrow x > 2. \text{''}$
(对于它们两者)的输出如下,
对于后一种情况,正确的引号需要显示为文本,否则输出看起来会很奇怪。
并且试图变得迂腐,在 LaTeX 中,打开和关闭双引号被视为不同。左引号编码为 ``(在许多键盘中,它将是 ~ 下方上行最左侧的键)。右引号由两个符号 ' ' 表示(或者您可能希望使用单个符号 ")。因此我们有 ``quote, unquote' '。单引号或 `quote, unquote' 也是如此。
你可能想看看这了解更多详情。
答案3
\documentclass{article}
\usepackage{amsmath,amsfonts}
\begin{document}
$P(x):`` \forall x \in \mathbb{R}, \, x^2 > 4 \Rightarrow x > 2."$
\end{document}