X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fpreventing-final-mark-from-removing-final-tuplet.ly;h=9536864eaa9f9bc4576d24f987691f5df07b6db6;hb=01df8ad908c92687d0c352e5ad5f067e52809423;hp=b73efe26ce43b35377123d60aa926dc642330436;hpb=4119457bf562c5b8a1e5664fa63ce2c571cd91b1;p=lilypond.git diff --git a/Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly b/Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly index b73efe26ce..9536864eaa 100644 --- a/Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly +++ b/Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly @@ -1,7 +1,10 @@ -%% 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.6" \header { lsrtags = "rhythms" @@ -15,33 +18,36 @@ tuplet marking. This can be overcome by setting @code{TupletBracket doctitle = "Preventing final mark from removing final tuplet" } % begin verbatim + \new Staff { \set tupletFullLength = ##t \time 1/8 \times 2/3 { c'16 c'16 c'16 } \times 2/3 { c'16 c'16 c'16 } \times 2/3 { c'16 c'16 c'16 } - \override Score.RehearsalMark #'break-visibility = ##(#t #t #t) - \override Score.RehearsalMark #'direction = #down - \override Score.RehearsalMark #'break-align-symbol = #'clef - \override Score.RehearsalMark #'self-alignment-X = #right - \mark "Composed Feb 2007 - Feb 2008" + \override Score.RehearsalMark.break-visibility = #'#(#t #t #t) + \override Score.RehearsalMark.direction = #DOWN + \override Score.RehearsalMark.self-alignment-X = #RIGHT +% due to issue 2362 the following line is commented +% \mark "Composed Feb 2007 - Feb 2008" +% and a shorter mark is used. + \mark "1234" } \new Staff { - \set tupletFullLength = ##t - - \override TupletBracket #'full-length-to-extent = ##f - - \time 1/8 - \times 2/3 { c'16 c'16 c'16 } - \times 2/3 { c'16 c'16 c'16 } - \times 2/3 { c'16 c'16 c'16 } - \override Score.RehearsalMark #'break-visibility = ##(#t #t #t) - \override Score.RehearsalMark #'direction = #down - \override Score.RehearsalMark #'break-align-symbol = #'clef - \override Score.RehearsalMark #'self-alignment-X = #right - \mark "Composed Feb 2007 - Feb 2008" + \set tupletFullLength = ##t + + \override TupletBracket.full-length-to-extent = ##f + + \time 1/8 + \times 2/3 { c'16 c'16 c'16 } + \times 2/3 { c'16 c'16 c'16 } + \times 2/3 { c'16 c'16 c'16 } + \override Score.RehearsalMark.break-visibility = #'#(#t #t #t) + \override Score.RehearsalMark.direction = #DOWN + \override Score.RehearsalMark.self-alignment-X = #RIGHT +% due to issue 2362 the following line is commented +% \mark "Composed Feb 2007 - Feb 2008" +% and a shorter mark is used. + \mark "1234" } - -