]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/system-separator.ly
Web-ja: update introduction
[lilypond.git] / input / regression / system-separator.ly
index 7667b237734188447cefd3c8da1efba33453296e..9b6e7456ad273c06f1cdfcd7ca55403a81b27967 100644 (file)
@@ -1,24 +1,25 @@
-\version "2.10.0"
+\version "2.19.21"
 
 \header {
-
   texidoc = "System separators may be defined as markups in the
-@code{systemSeparator} field of the paper block.  They are centered
-between the boundary staves of each system."
-
+@code{system-separator-markup} field of the paper block.  They are
+centered between the boundary staves of each system."
 }
 
 \paper {
-  systemSeparatorMarkup = \slashSeparator
+  system-separator-markup = \slashSeparator
+}
 
+foobar = \relative {
+  c'1 c \break
+  c1 c \break
+  c1 c
 }
-foobar = \relative { c1 c \break c c  \break c c }
-\book
-{
+\book {
   \score {
-     \new GrandStaff <<
-       \new Staff \foobar 
-       \new Staff \foobar 
-     >>
+    \new GrandStaff <<
+      \new Staff \foobar 
+      \new Staff \foobar 
+    >>
   }
 }