From 860a54ce799171277dfdbb2af8b1144bdb4587e9 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Sun, 11 Apr 2004 21:41:24 +0000 Subject: [PATCH] (classic_output): don't advance Offset for TeX output. --- lily/paper-book.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lily/paper-book.cc b/lily/paper-book.cc index 8c26fa9840..80ce79fb70 100644 --- a/lily/paper-book.cc +++ b/lily/paper-book.cc @@ -318,8 +318,14 @@ Paper_book::classic_output (String outname) int line_count = SCM_VECTOR_LENGTH ((SCM) scores_.top ()); for (int i = 0; i < line_count; i++) { + /* + In classic compatibility TeX tracks how large things are, and + advances the Y pos for us. If we advance it too, we get too + much space. + */ if (output_format_global == "tex") o = Offset (0,0); + out->output_line (scm_vector_ref ((SCM) scores_.top (), scm_int2num (i)), -- 2.39.5