]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/clip-systems.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / clip-systems.ly
index db83db418d1918944a042431b7fd33c9248b9b5d..153dac8eb44baf06bb616821292f3cb8d9dd9422 100644 (file)
@@ -1,10 +1,41 @@
-%% 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.dsi.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.14.2"
 
 \header {
   lsrtags = "paper-and-layout"
 
+%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
+  texidoces = "
+Este código muestra cómo recortar (extraer) fragmentos a partir de una
+partitura completa.
+
+Este archivo tiene que procesarse de forma separada con la opción
+@option{-dclip-systems}; la página de fragmentos de código podría no
+mostrar el resultado adecuadamente.
+
+La salida consiste en archivos con los nombres
+@samp{base-from-inicio-to-final[-número].eps}.
+
+
+Si se incluyen los comienzos y finales de los sistemas, incluyen las
+dimensiones del grob del sistema, por ejemplo los nombres de
+instrumento.
+
+
+Las notas de adorno en el punto final de la región no se incluyen.
+
+
+Las regiones pueden abarcar varios sistemas.  En este caso, se generan
+varios archivos EPS.
+
+"
+  doctitlees = "Recorte de sistemas"
+
   texidoc = "
 This code shows how to clip (extract) snippets from a full score.
 
@@ -23,14 +54,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 +84,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 +92,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 +105,8 @@ origScore = \score {
   }
 }
 
-#(set! output-count 0)
 #(ly:set-option 'clip-systems #f)
+#(define output-suffix #f)
 
 \book {
   \score { \origScore }
@@ -88,4 +120,3 @@ origScore = \score {
     }
   }
 }
-