如何显示数学符号但不忽略空格?

如何显示数学符号但不忽略空格?

在此处输入图片描述

我想这样显示,但我的代码似乎不起作用。当我尝试显示内联数学时,它会忽略空格,但是当我尝试将它们放入逐字环境中时,它会忽略数学符号。

答案1

可能像这样吗?

\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{enumerate}
\item By definition $[x \sim y] \longleftrightarrow [6 \mid 4x+2y]
  \longleftrightarrow [4x+2y \equiv 0 \pmod{6}]$
  \begin{enumerate}
  \item For reflexivity
    \begin{gather*}
      \forall x \in \mathbb{Z} :
      4x+2x \equiv 6x \equiv 0\cdot x \equiv 0 \pmod{6} \\
      \therefore [x \sim x]
      \implies \forall x [x \in \mathbb{Z}] [x \sim x]
    \end{gather*}
    Therefore $\sim$ is reflexive.
  \end{enumerate}
\end{enumerate}
\end{document}

在此处输入图片描述

相关内容