]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/span-bar.ly
Merge commit 'origin' into beamlets2
[lilypond.git] / input / regression / span-bar.ly
index a28b97d7f532c0c1f12d062702a5416dbc05f296..feb952071626752c61c6c26963b613e13f239ef2 100644 (file)
@@ -1,39 +1,42 @@
-\version "1.7.16"
+\version "2.12.0"
 \header {
-texidoc = "Span bars draw only in between staff bar lines, so setting those to transparent shows bar lines between systems only.
+  texidoc = "Span bars are drawn only between staff bar lines. By setting 
+bar lines to transparent, they are shown only between systems.
+
+Setting @code{SpanBar} transparent  removes the barlines
+between systems.
 "
 }
 
-\score {
- \notes \relative c' \context StaffGroup = groupie <
-  \context Staff = SA { c1 c1 c1}
-  \context Lyrics = LA \lyrics <
-   { bla1 die bla }
-  >
-  \context Staff = SB { a1 a1 a1}
-  \context Lyrics = LB \lyrics <
-   { bla1 die bla }
-   { foo bar foo }
-  >
-  \context Staff = SC { f1 f1 f1}
-  \context Lyrics = LC \lyrics <
-   { bla1 die bla }
-   { foo bar foo }
-   { foo bar foo }
-  >
-  \context Staff = SD { d1 d1 d1}
-  \context Lyrics = LD \lyrics <
-   { bla1 die bla }
-   { foo bar foo }
-   { foo bar foo }
-   { foo bar foo }
-  >
- >
- \paper {
-  \translator {
-   \StaffContext
-   BarLine \override #'transparent = ##t
+\layout {
+  \context {
+    \Staff
   }
- }
+  ragged-right =##t 
 }
-%% new-chords-done %%
+
+\relative c' \new StaffGroup <<
+  \new Staff {
+    a1
+    \once \override Score.BarLine #'transparent = ##t
+    a1
+    \once \override Score.SpanBar #'transparent = ##t
+    a1 a1
+    \bar "|."
+  }
+  \lyricmode <<
+    \new Lyrics { bla1 die bla }
+    \new Lyrics { foo bar foo }
+  >>
+  \new Staff {
+    f1 f1 f1 f1
+  }
+>>
+
+
+
+%% Local variables:
+%% LilyPond-indent-level:2
+%% End:
+