unicode-math icon indicating copy to clipboard operation
unicode-math copied to clipboard

`\dots` and integrals

Open marcin-serwin opened this issue 2 years ago • 0 comments

Description

unicode-math breaks the detection of integrals in amsmath's \dots command. It now uses \dotso instead of \dotsi between integrals. In practical terms it means that dots are now typeset on the baseline instead of centered

Add info or delete as appropriate:

  • Relevant for XeTeX
  • Relevant for LuaTeX
  • Issue tracker has been searched for similar issues.

Minimal example demonstrating the issue

\documentclass{article}

% \usepackage{amsmath}
\usepackage{unicode-math}

\makeatletter
\RenewDocumentCommand{\dotsi}{}{\texttt{<dotsi>}}
\RenewDocumentCommand{\dotso@}{}{\texttt{<dotso@>}}
\makeatother

\begin{document}
\[
    \int_A \dots \int_B
\]
\end{document}

Further details

Without unicode-math: image With unicode-math: image

marcin-serwin avatar Jun 29 '22 14:06 marcin-serwin