我怎样才能显示彼此之间具有长空格的方程式?

我怎样才能显示彼此之间具有长空格的方程式?

我如何才能创建显示方程式且方程式之间有长空格,就像这张图中第二行文本那样:

在此处输入图片描述

答案1

您甚至可以使用\quad或来\qquad表示这么长的空间。

有关更多间距命令,请参阅一些参考资料,例如https://www.overleaf.com/learn/latex/Spacing_in_math_mode#Reference_guide

答案2

我已经使用了(i)、(ii) 等标签的enumitem选项,并且在公式之间\roman 留出了空格,但您可以选择不同的方式。18pt

\documentclass[a4paper,12pt]{article}
\usepackage{amsmath,amssymb}
\usepackage{enumitem}


\begin{document}
\setlength\arraycolsep{18pt}
\begin{enumerate}[label=(\roman*)]
\item First roman enumerate
\item If $\theta$ and $\psi$ are formulas, then so are \[\begin{array}{*{5}{l}}
\neg\theta & (\theta\wedge \psi) & (\theta\vee\psi) & (\theta\to\psi) & (\theta\leftrightarrow\psi) \\
\end{array}\]
\item Third roman enumerate
\end{enumerate}


\end{document}

在此处输入图片描述

与其他数学字体类似,MnSymbol您可以获得类似的符号。

相关内容