From 4119457bf562c5b8a1e5664fa63ce2c571cd91b1 Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Fri, 20 Aug 2010 12:57:13 +0100 Subject: [PATCH] LSR: update. --- ...g-final-mark-from-removing-final-tuplet.ly | 47 +++++++++++++++++++ Documentation/snippets/rhythms.snippet-list | 1 + 2 files changed, 48 insertions(+) create mode 100644 Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly diff --git a/Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly b/Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly new file mode 100644 index 0000000000..b73efe26ce --- /dev/null +++ b/Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly @@ -0,0 +1,47 @@ +%% Do not edit this file; it is automatically +%% generated from LSR http://lsr.dsi.unimi.it +%% This file is in the public domain. +\version "2.13.29" + +\header { + lsrtags = "rhythms" + + texidoc = " +The addition of a final @code{mark} can result in the loss of a final +tuplet marking. This can be overcome by setting @code{TupletBracket +#'full-length-to-extent} to @code{false}. + +" + 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" +} + +\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" +} + + diff --git a/Documentation/snippets/rhythms.snippet-list b/Documentation/snippets/rhythms.snippet-list index c9a6a64e20..0b9ee61b80 100644 --- a/Documentation/snippets/rhythms.snippet-list +++ b/Documentation/snippets/rhythms.snippet-list @@ -38,6 +38,7 @@ permitting-line-breaks-within-beamed-tuplets.ly positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly positioning-grace-notes-with-floating-space.ly positioning-multi-measure-rests.ly +preventing-final-mark-from-removing-final-tuplet.ly printing-bar-numbers-at-regular-intervals.ly printing-bar-numbers-inside-boxes-or-circles.ly printing-metronome-and-rehearsal-marks-below-the-staff.ly -- 2.39.5