]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tuplet-numbers-kneed-beams-accidentals.ly
Improve positioning of tuplet numbers for kneed beams.
[lilypond.git] / input / regression / tuplet-numbers-kneed-beams-accidentals.ly
1 \version "2.19.3"
2
3 \header {
4   texidoc = "Tuplet numbers associated with kneed beams will
5 avoid accidentals."
6 }
7
8 \layout {
9   indent = 0
10   ragged-right = ##t
11 }
12
13 top = \change Staff = "1"
14 bottom = \change Staff = "2"
15
16 music = \relative c {
17   \override Beam.auto-knee-gap = 1
18   \tuplet 5/4 4 {
19     c16[ \top g'' e' \bottom fis,, \top c']
20     e'16 \bottom g,, c, \top <eis' gis cis> \bottom g,
21   }
22   \tuplet 3/2 4 {
23     \top c8 c'' ceses,,
24     g'' g,, <aeses' ceses eses>
25   }
26 }
27
28 \score {
29   \new PianoStaff <<
30     \new Staff = "1" {
31       s1
32     }
33     \new Staff = "2" {
34       \clef bass
35       \music
36     }
37   >>
38 }