Hello,
Is there a way to fine tune font size other than using \scriptsize and \footnotesize, etc.? I ask this because it appears that the footnote size in Microsoft word appears right between \scriptsize and \footnotesize in Latex. Thanks.
Fonts & Character Sets ⇒ fine tune font size
NEW: TikZ book now 40% off at Amazon.com for a short time.
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
fine tune font size
You can define sizes manually: this is often needed to match another design. For example:
The two numbers are the sizes of the font itself and the baseline separation. Note that I'm assuming your using scalable fonts (say lmodern).
Code: Select all
\makeatletter
\newcommand*\mysize{%
\@setfontsize\mysize{7.5}{9.0}%
}
\makeatother
Joseph Wright
Re: fine tune font size
Thank you! It works, though it is strange that I had to change the first number to 9 to get a fontsize between script and footnote.