]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/shortening-volta-brackets.ly
Merge commit 'origin' into beamlets2
[lilypond.git] / input / lsr / shortening-volta-brackets.ly
index 6c11abeeb40b45c664ce433403ed4e0fb6aa1ac0..0c61ebeedb97a1ee9638fbed73c7521a763a4257 100644 (file)
@@ -1,10 +1,20 @@
 %% 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.11.38"
+\version "2.12.0"
 
 \header {
   lsrtags = "repeats"
 
+  texidoces = "
+De forma predeterminada, los corchetes de primera y segunda vez se
+trazan encima de los finales alternativos completos, pero es posible
+acortartlos estableciendo un valor cierto para
+@code{voltaSpannerDuration}.  En el ejemplo siguiente, el corchete
+sólo dura un compás, que corresponde a una duración de 3/4.
+
+"
+  doctitlees = "Shortening volta brackets"
+
   texidoc = "
 By default, the volta brackets will be drawn over all of the
 alternative music, but it is possible to shorten them by setting
@@ -14,13 +24,17 @@ lasts one measure, which is a duration of 3/4.
 "
   doctitle = "Shortening volta brackets"
 } % begin verbatim
+
 \relative c'' {
   \time 3/4
-  c c c
+  c4 c c
   \set Score.voltaSpannerDuration = #(ly:make-moment 3 4)
-  \repeat volta 5 { d d d }
+  \repeat volta 5 { d4 d d }
   \alternative {
-    { e e e f f f }
-    { g g g }
+    {
+      e4 e e
+      f4 f f
+    }
+    { g4 g g }
   }
 }