]> git.donarmstrong.com Git - lilypond.git/blobdiff - line.cc
release: 0.0.3
[lilypond.git] / line.cc
diff --git a/line.cc b/line.cc
index 88e2f3eb28463badf9ddfbd45e98113345618e6a..d0a5d794bbf90ab7f5878b1cf3bcd9a07d6e8912 100644 (file)
--- 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<Line_of_staff*> sc(staffs); sc.ok(); sc++)
+     for (PCursor<Line_of_staff*> sc(staffs); sc.ok(); sc++){
         s += sc->TeXstring();
+        if ((sc+1).ok())
+            s+= "\\interstaffline\n";
+     }
      s += "}";
      return s;
 }