Unicode-math con XeLaTeX \left( y \right) no se representa correctamente

Unicode-math con XeLaTeX \left( y \right) no se representa correctamente

Estoy usando XeLaTeX (XeTeX 3.14159265-2.6-0.99992 (TeX Live 2015)) en OS X Sierra, compilando en un PDF a través derubber

\documentclass[letterpaper, 11pt]{article}
\usepackage{geometry}
\usepackage{amsmath}
% rubber: set program xelatex
\usepackage{unicode-math}
\setmathfont{STIX Two Math}
\setmainfont{STIX Two Text}

\begin{document}
This is the problem $\frac{\left(asdf\right)}{\left(ghjk\right)}$
\[ \frac{\frac{\left(asdf\right)}{\left(ghjk\right)}}{\frac{\left(asdf\right)}{\left(ghjk\right)}} \]
\[ \frac{\left(asdf\right)}{\left(ghjk\right)} \]
\begin{align*}
    \frac{\frac{\left(asdf\right)}{\left(ghjk\right)}}{\frac{\left(asdf\right)}{\left(ghjk\right)}} \\
    \frac{\left(asdf\right)}{\left(ghjk\right)} 
\end{align*}

\end{document}

El uso de fuentes STIX 2.0.0 con Unicode-math y XeLaTeX hace que los paréntesis con \left(y \right)se representen incorrectamente (como un signo de interrogación encuadrado), mientras que los caracteres normales (y )se representan correctamente. No tengo el mismo problema con \left[y \right].

La única diferencia en la salida del registro es un conjunto de las siguientes líneas:
Missing character: There is no Ⴞ in font STIX Two Math/OT:script=math;language= DFLT;! Missing character: There is no Ⴟ in font STIX Two Math/OT:script=math;language= DFLT;!

¿Alguien puede ayudarme a encontrar una solución para esto?


Ejemplo realmente mínimo:

\documentclass{article}
\usepackage{unicode-math}
\setmathfont{STIX Two Math}

\begin{document}

$\left(\right)$
$\scriptstyle\left(\right)$
$\scriptscriptstyle\left(\right)$

%\showoutput

\end{document}

ingrese la descripción de la imagen aquí

Missing character: There is no Ⴞ in font STIX Two Math/OT:script=math;language=DFLT;!
Missing character: There is no Ⴟ in font STIX Two Math/OT:script=math;language=DFLT;!
Missing character: There is no ᆷ in font STIX Two Math/OT:script=math;language=DFLT;+ssty=0;!
Missing character: There is no ^^@ in font STIX Two Math/OT:script=math;language=DFLT;!
Missing character: There is no ᆸ in font STIX Two Math/OT:script=math;language=DFLT;+ssty=0;!
Missing character: There is no ^^@ in font STIX Two Math/OT:script=math;language=DFLT;!

información relacionada