To change the default font size of a LaTeX symbol or a text
First, add the below lmodern package to your document
\usepackage{lmodern}
Next, Use the below command to change the font size of a symbol or a text and also its type
\fontsize{size}{baselineskip}\selectfont
On the whole, The command font size has three arguments
First is size
The second is baseline skip and
The third is to select a font
Change the font size of a symbol or a text
Predefined command to change the size
Here are some predefined commands that you can use without adding any package
{\tiny Tiny}
{\scriptsize Script}
{\footnotesize Foot}
{\small Small}
{\normalsize Normal}
{\large large}
{\Large Large}
{\huge huge}
{\Huge Huge}
Change the font type of a text and its size
{\fontsize{50}{10.5} $ {\rm Roman} $}
{\fontsize{50}{10.5} $ {\em Enfático} $}
Leave a Reply