From: Phil Holmes Date: Fri, 8 Aug 2014 08:58:30 +0000 (+0100) Subject: LSR updates: delete beam grouping snippet X-Git-Tag: release/2.19.12-1~15^2~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c174139b36102ad0e0997bbcce20175dec772a71;p=lilypond.git LSR updates: delete beam grouping snippet --- diff --git a/Documentation/snippets/beam-grouping-in-7-8-time.ly b/Documentation/snippets/beam-grouping-in-7-8-time.ly deleted file mode 100644 index 9fff57e114..0000000000 --- a/Documentation/snippets/beam-grouping-in-7-8-time.ly +++ /dev/null @@ -1,28 +0,0 @@ -%% 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.18.0" - -\header { - lsrtags = "rhythms" - - texidoc = " -There are no default automatic beam groupings specified for 7/8 time, -so if automatic beams are required the grouping must be specified using -beatStructure. For example, to group all beams 2-3-2 in -7/8 time, specify beam endings at 2/8 and 5/8: - -" - doctitle = "Beam grouping in 7/8 time" -} % begin verbatim - -\relative c'' { - \time 7/8 - % rhythm 2-3-2 - a8 a a a a a a - \set Score.beatStructure = #'(2 3 2) - a8 a a a a a a -} diff --git a/Documentation/snippets/changing-the-tuplet-number.ly b/Documentation/snippets/changing-the-tuplet-number.ly index d20801bedb..9ac1693c96 100644 --- a/Documentation/snippets/changing-the-tuplet-number.ly +++ b/Documentation/snippets/changing-the-tuplet-number.ly @@ -11,8 +11,8 @@ texidoc = " By default, only the numerator of the tuplet number is printed over the -tuplet bracket, i.e., the denominator of the argument to the -@code{\\times} command. +tuplet bracket, i.e., the numerator of the argument to the +@code{\\tuplet} command. Alternatively, num:den of the tuplet number may be printed, or the tuplet number may be suppressed altogether. diff --git a/Documentation/snippets/fingering-symbols-for-wind-instruments.ly b/Documentation/snippets/fingering-symbols-for-wind-instruments.ly index b5b45281fd..4274440b67 100644 --- a/Documentation/snippets/fingering-symbols-for-wind-instruments.ly +++ b/Documentation/snippets/fingering-symbols-for-wind-instruments.ly @@ -19,12 +19,9 @@ useful for wind instruments. centermarkup = { \once \override TextScript.self-alignment-X = #CENTER - \once \override TextScript.X-offset =#(ly:make-simple-closure - `(,+ - ,(ly:make-simple-closure (list - ly:self-alignment-interface::centered-on-x-parent)) - ,(ly:make-simple-closure (list - ly:self-alignment-interface::x-aligned-on-self)))) + \once \override TextScript.X-offset =#(lambda (g) + (+ (ly:self-alignment-interface::centered-on-x-parent g) + (ly:self-alignment-interface::x-aligned-on-self g))) } \score { diff --git a/Documentation/snippets/recorder-fingering-chart.ly b/Documentation/snippets/recorder-fingering-chart.ly index 85a038f55f..4d8d548bfd 100644 --- a/Documentation/snippets/recorder-fingering-chart.ly +++ b/Documentation/snippets/recorder-fingering-chart.ly @@ -21,12 +21,9 @@ instruments can be realized. centermarkup = { \once \override TextScript.self-alignment-X = #CENTER - \once \override TextScript.X-offset =#(ly:make-simple-closure - `(,+ - ,(ly:make-simple-closure (list - ly:self-alignment-interface::centered-on-x-parent)) - ,(ly:make-simple-closure (list - ly:self-alignment-interface::x-aligned-on-self)))) + \once \override TextScript.X-offset =#(lambda (g) + (+ (ly:self-alignment-interface::centered-on-x-parent g) + (ly:self-alignment-interface::x-aligned-on-self g))) } \score { diff --git a/Documentation/snippets/rhythms.snippet-list b/Documentation/snippets/rhythms.snippet-list index c837908e72..0d5bde1124 100644 --- a/Documentation/snippets/rhythms.snippet-list +++ b/Documentation/snippets/rhythms.snippet-list @@ -7,7 +7,6 @@ automatic-beam-subdivisions.ly automatically-change-durations.ly avoiding-collisions-with-chord-fingerings.ly beam-endings-in-score-context.ly -beam-grouping-in-7-8-time.ly beams-across-line-breaks.ly changing-beam-knee-gap.ly changing-form-of-multi-measure-rests.ly