如何在 unicode-math 中使用扩展箭头

如何在 unicode-math 中使用扩展箭头

众所周知,长箭头可以与amsmathextarrows:等\xleftarrow一起使用。\xLongleftarrow

但是,这些宏只是使用减号或等号,可能不太美观。例如unicode-math,XITS Math 已使用 OpenType 功能水平构造定义了长箭头。如何在 LaTeX 中使用它?

答案1

在此处输入图片描述

Luatex 有一个\Uhextensible原语可以访问字体中的水平拉伸功能。

\documentclass{article}

\usepackage{unicode-math}



\setmathfont{TeX Gyre Termes Math}


\parindent0pt
\begin{document}

\makeatletter

$\Uhextensible width 5cm 0 "2192$

$\Uhextensible width 6cm 0 "2194$

$\Uhextensible width 7cm 0 "21D2$

\end{document}

相关内容