]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/clip-systems.ly
Web: move unused images to their own directory
[lilypond.git] / Documentation / snippets / clip-systems.ly
index db83db418d1918944a042431b7fd33c9248b9b5d..b7be9582979e35f30d58706ced6ebe16834d3bbf 100644 (file)
@@ -1,6 +1,10 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.di.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.1"
+\version "2.18.0"
 
 \header {
   lsrtags = "paper-and-layout"
@@ -23,14 +27,14 @@ 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 +56,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 +64,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 +77,8 @@ origScore = \score {
   }
 }
 
-#(set! output-count 0)
 #(ly:set-option 'clip-systems #f)
+#(define output-suffix #f)
 
 \book {
   \score { \origScore }
@@ -88,4 +92,3 @@ origScore = \score {
     }
   }
 }
-