blob: 235d51c63546b4ee5154be5fff48da065724d26a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
\input{umtest-preamble}
\usepackage{unicode-math}
\usepackage{amsmath}
\usepackage{graphicx}
\setmathfont{Cambria Math}
\newcommand*{\test}[1]{%
\parbox[b][50pt]{50pt}{\scalebox{3}{$#1$}}%
}
\begin{document}
\test{\sqrt[a]{b}}
\test{\sqrt[\uproot{10}a]{b}}
\test{\sqrt[\leftroot{10}a]{b}}
\test{\sqrt[\leftroot{10}\uproot{10}a]{b}}
\end{document}
|