From c65035ecdb9b2945099f0400815bc4d7e0cba440 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sat, 25 Feb 2012 15:46:38 -0800 Subject: [PATCH] psfonts.ph: increase leading to font size+20% Increase the leading from +10% to +20%, (12 pt leading for the 10 pt bulk text.) Signed-off-by: H. Peter Anvin --- doc/genps.pl | 2 +- doc/psfonts.ph | 30 +++++++++++++++--------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/doc/genps.pl b/doc/genps.pl index 222db8aa..67e0f366 100755 --- a/doc/genps.pl +++ b/doc/genps.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl ## -------------------------------------------------------------------------- ## -## Copyright 1996-2009 The NASM Authors - All Rights Reserved +## Copyright 1996-2012 The NASM Authors - All Rights Reserved ## See the file AUTHORS included with the NASM distribution for ## the specific copyright holders. ## diff --git a/doc/psfonts.ph b/doc/psfonts.ph index 8d2f4e60..5203a80f 100644 --- a/doc/psfonts.ph +++ b/doc/psfonts.ph @@ -22,27 +22,27 @@ if ( 1 ) { # Times family fonts %TitlFont = (name => 'tfont', - leading => 22, + leading => 24, fonts => [[20,\%PS_Times_Bold], [20,\%PS_Times_BoldItalic], [20,\%PS_Courier_Bold]]); %ChapFont = (name => 'cfont', - leading => 19.2, + leading => 21.6, fonts => [[18,\%PS_Times_Bold], [18,\%PS_Times_BoldItalic], [18,\%PS_Courier_Bold]]); %HeadFont = (name => 'hfont', - leading => 15.4, + leading => 16.8, fonts => [[14,\%PS_Times_Bold], [14,\%PS_Times_BoldItalic], [14,\%PS_Courier_Bold]]); %SubhFont = (name => 'sfont', - leading => 13.2, + leading => 14.4, fonts => [[12,\%PS_Times_Bold], [12,\%PS_Times_BoldItalic], [12,\%PS_Courier_Bold]]); %BodyFont = (name => 'bfont', - leading => 11, + leading => 12, fonts => [[10,\%PS_Times_Roman], [10,\%PS_Times_Italic], [10,\%PS_Courier]]); @@ -50,54 +50,54 @@ if ( 1 ) { # Helvetica family fonts %TitlFont = (name => 'tfont', - leading => 22, + leading => 24, fonts => [[20,\%PS_Helvetica_Bold], [20,\%PS_Helvetica_BoldOblique], [20,\%PS_Courier_Bold]]); %ChapFont = (name => 'cfont', - leading => 19.2, + leading => 21.6, fonts => [[18,\%PS_Helvetica_Bold], [18,\%PS_Helvetica_BoldOblique], [18,\%PS_Courier_Bold]]); %HeadFont = (name => 'hfont', - leading => 15.4, + leading => 16.8, fonts => [[14,\%PS_Helvetica_Bold], [14,\%PS_Helvetica_BoldOblique], [14,\%PS_Courier_Bold]]); %SubhFont = (name => 'sfont', - leading => 13.2, + leading => 14.4, fonts => [[12,\%PS_Helvetica_Bold], [12,\%PS_Helvetica_BoldOblique], [12,\%PS_Courier_Bold]]); %BodyFont = (name => 'bfont', - leading => 11, + leading => 12, fonts => [[10,\%PS_Helvetica], [10,\%PS_Helvetica_Oblique], [10,\%PS_Courier]]); } else { # Body text Times; headings Helvetica %TitlFont = (name => 'tfont', - leading => 22, + leading => 24, fonts => [[20,\%PS_Helvetica_Bold], [20,\%PS_Helvetica_BoldOblique], [20,\%PS_Courier_Bold]]); %ChapFont = (name => 'cfont', - leading => 19.2, + leading => 21.6, fonts => [[18,\%PS_Helvetica_Bold], [18,\%PS_Helvetica_BoldOblique], [18,\%PS_Courier_Bold]]); %HeadFont = (name => 'hfont', - leading => 15.4, + leading => 16.8, fonts => [[14,\%PS_Helvetica_Bold], [14,\%PS_Helvetica_BoldOblique], [14,\%PS_Courier_Bold]]); %SubhFont = (name => 'sfont', - leading => 13.2, + leading => 14.4, fonts => [[12,\%PS_Helvetica_Bold], [12,\%PS_Helvetica_BoldOblique], [12,\%PS_Courier_Bold]]); %BodyFont = (name => 'bfont', - leading => 11, + leading => 12, fonts => [[10,\%PS_Times_Roman], [10,\%PS_Times_Italic], [10,\%PS_Courier]]); -- 2.11.4.GIT