[Tex/LaTex] How to get an even smaller font size than \tiny

fontsize

I wanted to amplify the effect of specifying the font size. So I tried:

{\tiny\tiny Super tiny text!}

But that doesn't seem to work. I needed suggestions to achieve the same goal.

Best Answer

A quick-and-dirty possibility for converting almost anything to a different size is to use graphicx's \resizebox or \scalebox. In your instance, if line-breaking is not a consideration, you can use

enter image description here

\usepackage{graphicx}% http://ctan.org/pkg/graphicx
%...
Normal {\tiny tiny} \scalebox{.2}{supertiny}

The above view is zoomed to 400%. You can modify the scaling factor .2 to whatever you're interested in.

Related Question