重新缩放 `\check` 符号

重新缩放 `\check` 符号

我想重新缩放\check符号,但不是整个文档。例如,

\documentclass{article}

\usepackage{mathtools}
\usepackage{asana-math}

\begin{document}

this is a normal \check symbol $\check{u}$, but in $\check{U}$ 
I want the check symbol to be larger

\end{document}

答案1

mathabx包提供了一个\widecheck宏。

由于我的系统上没有该asana-math包,以下示例使用 LuaLaTeX 和该unicode-math包指定Asana Math为 OpenType 数学字体。

在此处输入图片描述

\documentclass{article}
\usepackage{mathabx} % for '\widecheck' macro
\usepackage{unicode-math}
\setmathfont[Scale=MatchLowercase]{Asana Math}
\begin{document}
$\check{u}$ $\widecheck{U}$
\end{document}

答案2

奇怪的是,unicode-math没有定义\widecheck;你可以自己做。

\documentclass{article}

\usepackage{mathtools}
\usepackage{unicode-math}
\setmainfont{TeX Gyre Pagella}
\setmathfont{Asana Math}

\def\removefixed#1fixed #2\removefixed#3{%
  \protected\def#3{#1 #2}%
}

\AtBeginDocument{\expandafter\removefixed\check\removefixed\widecheck}

\begin{document}

this is a normal \verb|\check| symbol $\check{u}$, but in $\widecheck{U}$
I want the check symbol to be larger

\end{document}

在此处输入图片描述

相关内容