3

I would like to rescale \check symbol but not for the whole document. For example,

\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}
Yorgos
  • 2,694

2 Answers2

3

Strangely enough, unicode-math doesn't define \widecheck; you can do it yourself.

\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}

enter image description here

egreg
  • 1,121,712
2

The mathabx package provides a \widecheck macro.

Since I don't have the asana-math package on my system, the following example uses LuaLaTeX and the unicode-math package to specify Asana Math as the OpenType math font.

enter image description here

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