]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tuplets.ly
*** empty log message ***
[lilypond.git] / input / regression / tuplets.ly
1
2 \version "2.2.0"
3 \header{
4     
5 texidoc="
6 Tuplets are indicated by a bracket with a number.  There should be no
7 bracket if there is a beam exactly  matching  the length of the tuplet.
8 The bracket does not interfere with the stafflines, and the number is
9 centered in the gap in the bracket.
10
11 The bracket stops at the end of the stems, if the stems have the same
12 direction as the bracket. The endings can be adjusted with
13 @code{bracket-flare}.
14
15
16 "
17
18 }
19 \paper { raggedright= ##t }
20
21 \score{
22         \notes \context Voice \relative c'' {
23                  \times 2/3 { a8 b c }
24                  \times 2/3 { r8  b[ f] }
25                  \override TupletBracket  #'bracket-flare = #'(0.5 . 0.5)
26                  \times 2/3 { r8 b r8 }
27                  c4 |
28                  
29                  \times 3/4 { c4 c4 c4 c4 } c4 | 
30                  
31                  \time 6/8
32                  \times 6/9 { c8 c c c c c c c c }
33
34                  }
35 }
36
37
38