Fonts & Character Setsmaking the font size as small as possible

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
i1983
Posts: 1
Joined: Sat Jan 30, 2010 2:12 am

making the font size as small as possible

Post by i1983 »

hi
I'm currently using the "amsart" class. I would like to reduce the font size below 8 (which is the minimum size allowed by "amsart"). Basically, I'm trying to fit as much information on a single page (including tons of math stuff), and the smallest size allowed is still too big. Is there a way I could reduce the font size even lower? (I wouldn't mind changing document class or font or anything, I just want the font to be as small as possible).

Thank you!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

making the font size as small as possible

Post by frabjous »

If you use a type-1 font (T1 font encoding) like the Latin Modern fonts (just like Computer Modern, but with better scalability), you can use any font size you like.

For example the following code will typeset a math paper in size 2 font.

Code: Select all

\documentclass{amsart}
\usepackage[english]{babel}
\usepackage{blindtext} % for auto-generating text
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\begin{document}
\fontsize{2}{2}\selectfont
\blindmathpaper % generates a nonsense math paper automatically
\end{document}
I cannot for the life of me understand why you'd want to do such a ridiculous thing. What's the point of text so small you can't read it -- and in my opinion, anything below size 10 is just not worth it. Is paper so scarce where you live that you can't use another page or two?
magicmoose
Posts: 90
Joined: Fri Nov 06, 2009 7:29 am

making the font size as small as possible

Post by magicmoose »

Maybe it's a cheat sheet for an exam?
Check out this cheat sheet :o
Post Reply