[Tex/LaTex] Textsize between ‘scriptsize’ and ‘tiny’

fontsize

Is there a way I can generate a textsize that is 50% of the way between scriptsize and tiny?

Could this be defined as a function to be used in the same way as \scriptsize or \tiny?

Best Answer

The file size10.clo associated with default 10pt font size contains

\newcommand\scriptsize{\@setfontsize\scriptsize\@viipt\@viiipt}
\newcommand\tiny{\@setfontsize\tiny\@vpt\@vipt}

Thus I would try in the preamble

\makeatletter
\newcommand\notsotiny{\@setfontsize\notsotiny\@vipt\@viipt}
\makeatother

Example

\documentclass{article}
\makeatletter
\newcommand\notsotiny{\@setfontsize\notsotiny\@vipt\@viipt}
\makeatother
\begin{document}
ààà

\notsotiny ààà

\scriptsize ààà

\tiny ààà

\end{document}

enter image description here

You can use this

\newcommand\notsotiny{\@setfontsize\notsotiny{6}{7}}

or even

\newcommand\notsotiny{\@setfontsize\notsotiny{6.31415}{7.1828}}

The second number is the baseline separation.