\mathellipsis em XeLaTeX com mathspec

\mathellipsis em XeLaTeX com mathspec

Seguindo as soluçõesSinais de pontuação no modo matemático em xetex/mathspeceProblema de pontuação XeTeX/mathspec, estou fazendo ajustes no mathspec para forçar o XeTeX a usar sinais de pontuação da fonte apropriada. Porém, o espaçamento das reticências não pode ser feito corretamente quando é seguido por vírgula. LaTeX, é claro, não tem problema. MWE (pdftex apresenta um erro nos caracteres ^^^^, mas isso não importa; Old Standard é uma fonte gratuita):

\documentclass{article}
\usepackage{amsmath}
\usepackage{iftex}
\ifXeTeX
\usepackage{mathspec}
\defaultfontfeatures{Mapping=tex-text}
\setallmainfonts{Old Standard}
\makeatletter
\def\eu@MathPunctuation@symfont{Latin:m:n}
\DeclareMathSymbol{,}{\mathpunct}{\eu@MathPunctuation@symfont}{`,}
\DeclareMathSymbol{.}{\mathord}{\eu@MathPunctuation@symfont}{`.}
\XeTeXDeclareMathSymbol{^^^^2026}{\mathinner}%
        {\eu@MathPunctuation@symfont}{"2026}[\mathellipsis]
\makeatother
\fi
\begin{document}
$\left<i_1, i_2,\ldots,i_n\right>$
\end{document}

Alguém tem alguma sugestão sobre o que fazer?

Responder1

Talvez seja isso que você está procurando:

\documentclass{article}
\usepackage{amsmath}
\usepackage{mathspec}
\usepackage{newunicodechar}

\defaultfontfeatures{Ligatures=TeX}% not needed with last version of fontspec
\setallmainfonts{Old Standard}

\makeatletter
\def\eu@MathPunctuation@symfont{Latin:m:n}
\DeclareMathSymbol{,}{\mathpunct}{\eu@MathPunctuation@symfont}{`,}
\DeclareMathSymbol{.}{\mathord}{\eu@MathPunctuation@symfont}{`.}
\XeTeXDeclareMathSymbol{^^^^2026}{\mathinner}%
        {\eu@MathPunctuation@symfont}{"2026}[\mathellipsis]
\AtBeginDocument{\renewcommand{\mathellipsis}{\mathinner…}}
\newunicodechar{…}{\ifmmode\mathinner…\else…\fi}
\makeatother

\begin{document}
Here… again

Here\ldots{} again

$\langle i_1, i_2,\ldots,i_n\rangle$

$\langle i_1, i_2,\dots,i_n\rangle$ % better!

$\langle i_1, i_2,…,i_n\rangle$

\end{document}

Observe que não é definido como \mathinner, mas \mathellipsisapenas faz (por padrão). Então eu redefino \mathellipsise também a ação de , então deve estar correta em todos os casos.

insira a descrição da imagem aqui

informação relacionada