From a98df2a7e6005f6855422f1d9930526f294e1542 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Thu, 12 Jul 2012 11:00:17 -0300 Subject: [PATCH] gencat/pdf.c: reduce number of columns and make them wider We gain 45 points in portrait and 55 points in landscape. --- gencat/pdf.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gencat/pdf.c b/gencat/pdf.c index 59d8920..71db644 100644 --- a/gencat/pdf.c +++ b/gencat/pdf.c @@ -46,9 +46,9 @@ static struct format { .index = { "Helvetica", 10, 32 }, .comment_line_skip = 14, .index_line_skip = 12, - .index_column_skip = 140, + .index_column_skip = 195, /* make a little wider than in portrait */ .index_lines = 45, - .index_columns = 6, + .index_columns = 4, }, portrait = { .file_setup = "%%Orientation: Portrait", .overlay_setup = "0 790 translate", @@ -60,9 +60,9 @@ static struct format { .index = { "Helvetica", 10, 0 }, .comment_line_skip = 14, .index_line_skip = 12, - .index_column_skip = 140, + .index_column_skip = 185, .index_lines = 63, - .index_columns = 4, + .index_columns = 3, }; static const struct format *format;