
amsmath
's는 \dots
토큰 이후에(제 생각에는 이전에) 토큰을 기반으로 사용할 쉼표 유형을 자동 감지하는 데 매우 효과적입니다. 그러나 나를 당혹스럽게 만드는 것은 , , 등과 유사한 관계임에도 불구하고 특히 작동하지 않는 이유입니다 . 누군가 \cong
설명 할 수 있습니까? 이건 그냥 버그인가요?=
\equiv
\simeq
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\noindent
\(a = \dots = b\)\\
\(a \cong \dots \cong b\), what?\\
\(a \sim \dots \sim b\)\\
\(a \equiv \dots \equiv b\)\\
\(a \simeq \dots \simeq b\)
\end{document}
답변1
아마도 변경 사항 및 기타 여러 커널 명령 amsmath
도 변경되어야 할 것입니다 .\cong
\sum
\documentclass{article}
\usepackage{amsmath}
\makeatletter
\NewCommandCopy{\cong@}{\cong}
\renewcommand{\cong}{\DOTSB\cong@}
\makeatother
\begin{document}
\(a = \dots = b\)
\(a \cong \dots \cong b\)
\(a \sim \dots \sim b\)
\(a \equiv \dots \equiv b\)
\(a \simeq \dots \simeq b\)
\end{document}