Fonts & Character Sets ⇒ making the font size as small as possible
making the font size as small as possible
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!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
making the font size as small as possible
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}
-
magicmoose
- Posts: 90
- Joined: Fri Nov 06, 2009 7:29 am