X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=Documentation%2Fsnippets%2Fpreventing-final-mark-from-removing-final-tuplet.ly;h=db86ab6d76c4fc308334e93f522bfa312026398e;hb=f34e902280136100fa7cdea1f6ff3e8860181008;hp=adc3d1c0f150aa79e87f2bca4d376dcf4c8feb1d;hpb=b503d2c54e1c3c6bf1677226b2c2aaab94e8aba8;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 adc3d1c0f1..db86ab6d76 100644 --- a/Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly +++ b/Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly @@ -4,7 +4,7 @@ %% and then run scripts/auxiliar/makelsr.py %% %% This file is in the public domain. -\version "2.12.2" +\version "2.17.11" \header { lsrtags = "rhythms" @@ -18,30 +18,37 @@ tuplet marking. This can be overcome by setting @code{TupletBracket doctitle = "Preventing final mark from removing final tuplet" } % begin verbatim +\markup \vspace #1 %% workaround for LSR-problem + \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 #'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 + \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 - \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" } -