]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/clip-systems.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / clip-systems.ly
index cf590a0d33440c13645a1226af9644ca337a6c99..153dac8eb44baf06bb616821292f3cb8d9dd9422 100644 (file)
@@ -1,11 +1,41 @@
-%% Do not edit this file; it is automatically
+%% 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.4"
+\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.
 
@@ -30,8 +60,9 @@ are generated.
   doctitle = "Clip systems"
 } % begin verbatim
 
+
 #(ly:set-option 'clip-systems)
-#(set! output-count 1)
+#(define output-suffix "1")
 
 origScore = \score {
   \relative c' {
@@ -74,8 +105,8 @@ origScore = \score {
   }
 }
 
-#(set! output-count 0)
 #(ly:set-option 'clip-systems #f)
+#(define output-suffix #f)
 
 \book {
   \score { \origScore }
@@ -89,4 +120,3 @@ origScore = \score {
     }
   }
 }
-