我想重新缩放\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}