X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fshortening-volta-brackets.ly;h=22e52ece02ec3ce30f33f90633445a1d57f2d62a;hb=def21b306e2b8fa2d5630fab0878e9922e197f0c;hp=92beba3db248e7ff02af4266308200050a8f363b;hpb=0990302a9701a6a29132316b9302caacd35a8196;p=lilypond.git diff --git a/input/lsr/shortening-volta-brackets.ly b/input/lsr/shortening-volta-brackets.ly index 92beba3db2..22e52ece02 100644 --- a/input/lsr/shortening-volta-brackets.ly +++ b/input/lsr/shortening-volta-brackets.ly @@ -1,23 +1,29 @@ %% 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.11.57" \header { lsrtags = "repeats" - texidoc = " + + texidoc = " By default, the volta brackets will be drawn over all of the alternative music, but it is possible to shorten them by setting @code{voltaSpannerDuration}. In the next example, the bracket only lasts one measure, which is a duration of 3/4. -" } -% begin verbatim + +" + 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 } } }