]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/modifying-tuplet-bracket-length.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into kainhofer
[lilypond.git] / input / lsr / modifying-tuplet-bracket-length.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "rhythms"
7  texidoc = "
8 Tuplet brackets can be made to run to prefatory matter or the next
9 note. Default tuplet brackets end at the right edge of the final note
10 of the tuplet; full-length tuplet brackets extend farther to the right,
11 either to cover all the non-rhythmic notation up to the following note,
12 or to cover only the whitespace before the next item of notation, be
13 that a clef, time signature, key signature, or another note.  The
14 example shows how to switch tuplets to full length mode and how to
15 modify what material they cover.
16 " }
17 % begin verbatim
18 \new RhythmicStaff {
19
20       % Set tuplets to be extendable ..
21
22    \set tupletFullLength = ##t
23
24       % .. to cover all items up to the next note
25
26    \set tupletFullLengthNote = ##t
27    \time 2/4
28    \times 2/3 { c4 c c }
29
30       % .. or to cover just whitespace
31
32    \set tupletFullLengthNote = ##f
33    \time 4/4
34    \times 4/5 { c4 c1 }
35    \time 3/4
36    c4
37 }