我想要在这个公式(单子一阶时间逻辑)中的变量之间留一个空格。我尝试使用\,
和,\hspace{}
但似乎都不起作用。有人能帮我吗?示例公式:
$G(\forall (x) \forall (y)(p(x) \vee \neg p(y)))$
它应该是
G space(\forall (x)space \forall (y)space(p(x)space \vee space \neg p(y)))
答案1
那里是有区别。以下是公式的 5 个版本,具有正常间距,并添加了\,
、\:
和。在我看来,唯一可能证明添加一些空格\;
合理\
的地方就是量词之间。对于括号和二进制符号,间距是可以的:
\documentclass{article}
\usepackage{mathtools} %
\begin{document}
\begin{gather*}
G\Bigl(\forall (x)\forall (y)\bigl(p(x) \vee\neg p(y)\bigr)\Bigr)\\
G\,\Bigl(\forall (x)\,\forall (y)\,\bigl(p(x)\,\vee\,\neg p(y)\bigr)\Bigr)\\
G\:\Bigl(\forall (x)\: \forall (y)\: \bigl(p(x)\: \vee\:\neg p(y)\bigr)\Bigr)\\
G\;\Bigl(\forall (x)\;\forall (y)\;\bigl(p(x)\;\vee\;\neg p(y)\bigr)\Bigr)\\
G\ \Bigl(\forall (x)\ \forall (y)\ \bigl(p(x)\ \vee\ \neg p(y)\bigr)\Bigr)\\
\end{gather*}
\end{document}
答案2
这里看不出有什么问题。这些都对你不起作用吗?只是为了举几个例子。你可以找到一个大列表这里。
% arara: pdflatex
\documentclass{article}
\usepackage{mathtools}
\newcommand*{\test}[1]{$G#1(\forall(x)#1\forall(y)#1(p(x)#1\vee#1\neg{}p(y)))$\par}
\begin{document}
\test{}
\test{\,}
\test{\>}
\test{\ }
\test{\mkern+10mu}
\test{\quad}
\test{\qquad}
\test{\hskip 3em}
\test{\hspace{35pt}}
\end{document}
当然,您可以直接在公式中添加这些命令,并在每行中使用各种命令。