]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tuplet-bracket-outside-staff-priority.ly
Merge branch 'master' of git://git.savannah.gnu.org/lilypond.git
[lilypond.git] / input / regression / tuplet-bracket-outside-staff-priority.ly
1 \version "2.15.6"
2 \header {
3
4   texidoc = "Tuplet brackets' outside staff priority can be
5 set.  Brackets, by default, carry their numbers with them."
6
7 }
8
9 \relative c'' {
10   % Plain old tuplet
11   \times 2/3 { a8 r a }
12   % With nothing set, collisions abound both horizontally and
13   % vertically
14   \times 2/3 { a8^\espressivo r a^\espressivo }
15   % Setting the staff priority prevents collisions
16   \override TupletBracket #'outside-staff-priority = #1
17   \times 2/3 { a8^\espressivo r a^\espressivo }
18   % Note that, with the outside-staff-priority set, this bracket
19   % should be at the same vertical level as the first one
20   \times 2/3 { a8 r a }
21 }