X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fengraving-tremolos-with-floating-beams.ly;h=51298a8a5fa2847d069ad08f02e6c7ba50af7752;hb=f0a8d907612e79271f97a2936165f57505b12350;hp=2e743e22f05286d0ad24f9c7081b414e9989af5d;hpb=94408d4a2e538e8812561f29e09116ede58dd042;p=lilypond.git diff --git a/Documentation/snippets/engraving-tremolos-with-floating-beams.ly b/Documentation/snippets/engraving-tremolos-with-floating-beams.ly index 2e743e22f0..51298a8a5f 100644 --- a/Documentation/snippets/engraving-tremolos-with-floating-beams.ly +++ b/Documentation/snippets/engraving-tremolos-with-floating-beams.ly @@ -1,10 +1,13 @@ -%% 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.29" +\version "2.17.25" \header { - lsrtags = "rhythms, repeats" + lsrtags = "repeats, rhythms" texidoc = " If a tremolo's total duration is less than a quarter-note, or exactly a @@ -22,26 +25,23 @@ the @code{'gap} property. doctitle = "Engraving tremolos with floating beams" } % begin verbatim + \relative c'' { \repeat tremolo 8 { a32 f } - \override Beam #'gap-count = #1 + \override Beam.gap-count = #1 \repeat tremolo 8 { a32 f } - \override Beam #'gap-count = #2 + \override Beam.gap-count = #2 \repeat tremolo 8 { a32 f } - \override Beam #'gap-count = #3 + \override Beam.gap-count = #3 \repeat tremolo 8 { a32 f } - \override Beam #'gap-count = #3 - \override Beam #'gap = #1.33 + \override Beam.gap-count = #3 + \override Beam.gap = #1.33 \repeat tremolo 8 { a32 f } - \override Beam #'gap = #1 + \override Beam.gap = #1 \repeat tremolo 8 { a32 f } - \override Beam #'gap = #0.67 + \override Beam.gap = #0.67 \repeat tremolo 8 { a32 f } - \override Beam #'gap = #0.33 + \override Beam.gap = #0.33 \repeat tremolo 8 { a32 f } } - - - -