答案1
\sim
被设置为中缀关系,因此具有的间距=
会影响相邻二元运算符的间距,您需要一个\mathord
(像字母)或更好\mathop
(像\log
)符号,因为您使用它作为前缀运算符。
\documentclass{article}
\begin{document}
$\sim(p\land q)\iff (\sim p\lor \sim q)$
${\sim}(p\land q)\iff ({\sim} p\lor {\sim} q)$
$\mathop{{}\sim}(p\land q)\iff (\mathop{{}\sim} p\lor \mathop{{}\sim} q)$
\end{document}