I would like to set the fontsize of 14pt in the article class. But, using What point (pt) font size are \Large etc.?, I obtain:
Questions:
- I am assuming that the output means that the closest font size available is
14.4pt. Why did the font size not default to12ptor14.4ptinstead of10pt? - How do I set the font size to
14.4pt. Using\documentclass[14.4pt]{article}yields identical output as above.
References:
Code:
\documentclass[14pt]{article}
\makeatletter
%% https://tex.stackexchange.com/q/24599/4301
\newcommand\thefontsize[1]{{#1 The current font size is: \f@size pt\par}}
\makeatother
\begin{document}
%\sffamily
%\thefontsize\tiny
%\thefontsize\scriptsize
%\thefontsize\footnotesize
%\thefontsize\small
\thefontsize\normalsize
\thefontsize\large
\thefontsize\Large
\thefontsize\LARGE
\thefontsize\huge
\thefontsize\Huge
\end{document}


extsizespackage makes it possible to have a 14pt base font size, with\documentclass[14pt]{extarticle}. – Bernard Jan 03 '22 at 19:18