文字の大きさを変えるには、以下のようなコマンドがある。
{\tiny a}
{\scriptsize a}
{\footnotesize a}
{\small a}
{\normalsize a}
{\large a}
{\Large a}
{\LARGE a}
{\huge a}
{\Huge a}
|
もっと大きくしたい? \scalebox{}{} を使う手がある。
\usepackage{graphicx}% graphicx の機能なので、これが必要
\begin{document}
...
\scalebox{10.0}{a}
|