在文本模式下,可以轻松调整文本的大小。在下面的代码中,第二个字符串比第一个字符串大得多。
\documentclass{article}
\begin{document}
test \\
\Huge{test}
\end{document}
但在数学模式下尝试同样的操作却不起作用。在此代码中,第二个除法符号没有被放大。
\documentclass{article}
\begin{document}
$\div$ \\
$\Huge{\div}$
\end{document}
如何在数学模式下更改符号的大小?