Increase font size
Mai 24th, 2008 by Stefan Kottwitz
Sometimes the question is raised how to get bigger font sizes than the standard LaTeX command \Huge provides (see: font sizes).
It can easily done by using the \fontsize command followed by \selectfont. If unusual sizes are used the fix-cm package should be loaded. A small example for demonstration:
\documentclass[a4paper,10pt]{article} \usepackage{fix-cm} \begin{document} \fontsize{60}{70}\selectfont Huge text \end{document}
That’s also a possibility to choose an intermediate size, for instance if \tiny gets too small and \scriptsize gets too big.
This topic was discussed in the LaTeX Community Forum, on CQF.info and on Matheplanet.
This entry was posted on Samstag, Mai 24th, 2008 at 10:16 and is filed under Fonts and Symbols. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.




Februar 22nd, 2010 at 06:07
thank’s for author
April 29th, 2010 at 18:24
Good. but not very useful
November 19th, 2010 at 22:25
Thank you very much! That snippet proved to be extremely helpful!