From 4fa1bd8bf70d30211a34cfcf0c162137ba67f47c Mon Sep 17 00:00:00 2001 From: fred Date: Thu, 10 Oct 1996 19:09:03 +0000 Subject: [PATCH] lilypond-0.0.3 --- line.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/line.cc b/line.cc index 88e2f3eb28..d0a5d794bb 100644 --- a/line.cc +++ b/line.cc @@ -39,7 +39,7 @@ Line_of_staff::TeXstring() const s += sc->TeXstring(); } } - s+="\\hss}}"; + s+="\\hss}\\vss}"; return s; } @@ -47,8 +47,11 @@ String Line_of_score::TeXstring() const { String s("\\vbox{"); - for (PCursor sc(staffs); sc.ok(); sc++) + for (PCursor sc(staffs); sc.ok(); sc++){ s += sc->TeXstring(); + if ((sc+1).ok()) + s+= "\\interstaffline\n"; + } s += "}"; return s; } -- 2.39.5