1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-12-23 09:47:22 +02:00

gencat/pdf.c: reduce number of columns and make them wider

We gain 45 points in portrait and 55 points in landscape.
This commit is contained in:
Werner Almesberger 2012-07-12 11:00:17 -03:00
parent 408c003822
commit a98df2a7e6

View File

@ -46,9 +46,9 @@ static struct format {
.index = { "Helvetica", 10, 32 }, .index = { "Helvetica", 10, 32 },
.comment_line_skip = 14, .comment_line_skip = 14,
.index_line_skip = 12, .index_line_skip = 12,
.index_column_skip = 140, .index_column_skip = 195, /* make a little wider than in portrait */
.index_lines = 45, .index_lines = 45,
.index_columns = 6, .index_columns = 4,
}, portrait = { }, portrait = {
.file_setup = "%%Orientation: Portrait", .file_setup = "%%Orientation: Portrait",
.overlay_setup = "0 790 translate", .overlay_setup = "0 790 translate",
@ -60,9 +60,9 @@ static struct format {
.index = { "Helvetica", 10, 0 }, .index = { "Helvetica", 10, 0 },
.comment_line_skip = 14, .comment_line_skip = 14,
.index_line_skip = 12, .index_line_skip = 12,
.index_column_skip = 140, .index_column_skip = 185,
.index_lines = 63, .index_lines = 63,
.index_columns = 4, .index_columns = 3,
}; };
static const struct format *format; static const struct format *format;