]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/new/changing-form-of-multi--measure-rests.ly
Fix build (files used wrong CRLF vs. CR vs. LF, so lilypond barfed and exited)
[lilypond.git] / input / new / changing-form-of-multi--measure-rests.ly
index 37e904e70d5a262cfd1c7bd5dca6d128cc434448..53b7a276491fb8fb53425d6d70a77e98b1fa4cbe 100644 (file)
@@ -4,17 +4,16 @@
   doctitle = "Changing form of multi-measure rests"
   lsrtags = "rhythms,tweaks-and-overrides"
   texidoc = "
-If there are 10 or fewer measures of rest, LilyPond prints
+If there are ten or fewer measures of rests, LilyPond prints
 a series of longa and breve rests (called in German
-Kirchenpausen - church rests) within the staff and
-prints a simple line otherwise.  This default number of 10
+\"Kirchenpausen\" - church rests) within the staff and
+prints a simple line otherwise.  This default number of ten
 may be changed by an override:
 "}
 
-@lilypond[quote,ragged-right,fragment,verbatim]
-\compressFullBarRests
-R1*2 | R1*5 | R1*9
-\override MultiMeasureRest #'expand-limit = 3
-R1*2 | R1*5 | R1*9
-@end lilypond
-
+\relative c'' {
+  \compressFullBarRests
+  R1*2 | R1*5 | R1*9
+  \override MultiMeasureRest #'expand-limit = 3
+  R1*2 | R1*5 | R1*9
+}