Fonts & Character Setsfine tune font size

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
onewiki
Posts: 10
Joined: Mon Nov 16, 2009 4:54 am

fine tune font size

Post by onewiki »

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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

fine tune font size

Post by josephwright »

You can define sizes manually: this is often needed to match another design. For example:

Code: Select all

\makeatletter
\newcommand*\mysize{%
  \@setfontsize\mysize{7.5}{9.0}%
}
\makeatother
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).
Joseph Wright
onewiki
Posts: 10
Joined: Mon Nov 16, 2009 4:54 am

Re: fine tune font size

Post by onewiki »

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.
Post Reply