\documentclass{article}
\begin{document}
This is a very simple example, {\LARGE in which this text is set on a pretty
large font size}, and {\textsc this one, instead, has a different font.}
\end{document}
\documentclass{article}
\begin{document}
This is a very simple example, {\LARGE in which this text is set on a pretty
large font size}, and {\footnotesize this one, instead, is set on a pretty
small one.}
\end{document}
\documentclass{article}
\begin{document}
You are going to see a very interesting thing now, how
\textsc{this sentence changed its style.}
\sffamily
This, instead, is another interesting point. Here, you are changing the absolute
(so not relative) word style. This means that you are changing the font style from this
sentence, to the end of the document.
\end{document}
\documentclass{article}
\begin{document}
You are going to see a very interesting thing now, how
\textsc{this sentence changed its style.}
\sffamily
This, instead, is another interesting point. Here, you are changing the absolute
(so not relative) word style. This means that you are changing the font style from this
sentence, to the end of the document.
\end{document}
\renewcommand{\familydefault}{\sfdefault}
\renewcommand{\familydefault}{\rmdefault}
\tiny
\scriptsize
\footnotesize
\small
\normalsize
\large
\Large
\LARGE
\huge
\Huge
\documentclass{article}
\begin{document}
\tiny{tiny}
\scriptsize{scriptsize}
\footnotesize{footnotesize}
\small{small}
\normalsize{normalsize}
\large{large}
\Large{Large}
\LARGE{LARGE}
\huge{huge}
\Huge{Huge}
\end{document}