为什么左括号和根号之间有一个空格?

为什么左括号和根号之间有一个空格?

最小工作示例:

\documentclass{article}

\begin{document}
Default spacing: \((\sqrt 2)\)

Negative space after the left parenthesis: \((\!\sqrt 2)\)
\end{document}

编译最小工作示例

对我来说,默认间距看起来很糟糕,删除左括号后的空格看起来更好。有什么理由不这样做吗?为什么它首先是默认的?

答案1

(这是一种视觉效果。和 无理数之间没有添加空格:

\documentclass{article}

\newcommand{\zw}{\kern-0.05pt\vrule width0.1pt\kern-0.05pt}

\begin{document}

\((\zw\sqrt{2})\)

\((\sqrt{2})\)

\end{document}

在此处输入图片描述

事实上,该结构是不对称的;使用对称符号时效果不太明显,例如x

在此处输入图片描述

不要减少部首前面的空格(无论如何\!这太过激烈),而要增加部首后面的空格,尤其是后面带有括号的情况下。

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\((\sqrt{2})\)

\((\sqrt{2}\,)\)

\((\mspace{-1.5mu}\sqrt{2})\)

\end{document}

在此处输入图片描述

相关内容