]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tuplet-properties.ly
Add support for max-systems-per-page.
[lilypond.git] / input / regression / tuplet-properties.ly
1
2 \header {
3   texidoc = "Tuplet bracket formatting supports numerous options,
4 for instance, bracketed (B) and non-bracketed (NB).
5 "
6 }
7
8
9 \version "2.11.51"
10
11
12
13 \context Voice \relative c'' {
14
15   \times 2/3 { c'8 c,, c }
16   \times 2/3 { c'8 c'' c,, }
17
18   
19   \times 2/3 {  c8[^"NB" c c]  }
20   
21   \times 2/3 { c8^"B"  c[ c]  }
22   \times 2/4 { r8_"B"  c,[ c'] r8 }
23   
24   \override TupletBracket  #'bracket-visibility = #'if-no-beam  
25   \times 2/3 {  c8[ c c]  }
26   
27   \tupletUp
28   \override TupletNumber #'transparent = ##t
29   \times 2/3 { c8^""^""^"up, no digit"  c[ c]  }
30   \revert TupletNumber #'transparent
31
32   \override TupletBracket  #'bracket-visibility = ##t
33   \override TupletBracket  #'shorten-pair = #'(2.0 . 2.0)
34   \times 4/6 { c_"shorter, no edges" f b  b f c}        
35   \revert TupletBracket #'edge-height
36   \revert TupletBracket #'shorten-pair
37   \override TupletBracket  #'bracket-flare = #'(0.5 . 0.5)
38   \times 2/3 { b^""^""^"angled edges" b b }
39   \tupletNeutral
40   \times 2/3 { b b b }
41
42 }
43
44