X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=Documentation%2Fsnippets%2Fpreventing-final-mark-from-removing-final-tuplet.ly;h=d39af579da94560150752b809586394d952f4be6;hb=4051d4410364b9984faa181659a3bfe2763a9736;hp=44bd404764a99e8706851a1af368c35d1f78df73;hpb=9158bc17904d4dd930a1f776cfe3226f1ad84092;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 44bd404764..d39af579da 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 -%% generated from LSR http://lsr.dsi.unimi.it +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.di.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.31" +\version "2.18.0" \header { lsrtags = "rhythms" @@ -18,30 +21,32 @@ tuplet marking. This can be overcome by setting @code{TupletBracket \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" + \tuplet 3/2 { c'16 c'16 c'16 } + \tuplet 3/2 { c'16 c'16 c'16 } + \tuplet 3/2 { 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" } \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 + \tuplet 3/2 { c'16 c'16 c'16 } + \tuplet 3/2 { c'16 c'16 c'16 } + \tuplet 3/2 { 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" } - -