Tikzmark 和 Forest 包在 XeLaTeX 中不起作用?

Tikzmark 和 Forest 包在 XeLaTeX 中不起作用?

请参阅以下 MWE:

\documentclass{standalone}

\usepackage{tikz}
\usetikzlibrary{tikzmark}
\usepackage{forest}

\begin{document}

\begin{forest}
    [\subnode{15}{15}\ 18
        [\subnode{13}{\phantom{13}}]
        [\subnode{16}{16}\ 17]
        [19]
    ]
\end{forest}
\begin{tikzpicture}[overlay,remember picture]
    \draw[->] (15) to[out=180,in=90] (13);
\end{tikzpicture}
\end{document} 

产生,使用pdfLaTeX 运作

现在编译相同的XeLaTeX结果

不工作

相关内容