From: fred Date: Thu, 10 Oct 1996 19:09:03 +0000 (+0000) Subject: lilypond-0.0.3 X-Git-Tag: release/1.5.59~7114 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4fa1bd8bf70d30211a34cfcf0c162137ba67f47c;p=lilypond.git lilypond-0.0.3 --- 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; }