]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/clip-systems.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / clip-systems.ly
index db83db418d1918944a042431b7fd33c9248b9b5d..eb29f204cf00c90e881647f942ee5f3ba6f64859 100644 (file)
@@ -1,6 +1,8 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.13.1"
+% Do not edit this file; it is automatically
+% generated from Documentation/snippets/new
+% This file is in the public domain.
+%% Note: this file works from version 2.13.4
+\version "2.13.4"
 
 \header {
   lsrtags = "paper-and-layout"
@@ -23,14 +25,15 @@ Grace notes at the end point of the region are not included.
 
 
 Regions can span multiple systems.  In this case, multiple EPS files
-are generated. 
+are generated.
 
 "
   doctitle = "Clip systems"
 } % begin verbatim
 
+
 #(ly:set-option 'clip-systems)
-#(set! output-count 1)
+#(define output-suffix "1")
 
 origScore = \score {
   \relative c' {
@@ -52,7 +55,7 @@ origScore = \score {
     \layout {
       % Each clip-region is a (START . END) pair
       % where both are rhythmic-locations.
-      
+
       % (make-rhythmic-locations BAR-NUMBER NUM DEN)
       % means NUM/DEN whole-notes into bar numbered BAR-NUMBER
 
@@ -60,7 +63,7 @@ origScore = \score {
       (cons
        (make-rhythmic-location 2 0 1)
        (make-rhythmic-location 4 0 1))
-      
+
       (cons
        (make-rhythmic-location 0 0 1)
        (make-rhythmic-location 4 0 1))
@@ -73,8 +76,8 @@ origScore = \score {
   }
 }
 
-#(set! output-count 0)
 #(ly:set-option 'clip-systems #f)
+#(define output-suffix #f)
 
 \book {
   \score { \origScore }
@@ -88,4 +91,3 @@ origScore = \score {
     }
   }
 }
-