]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-multi-tuplet.ly
Merge remote-tracking branch 'origin/translation'
[lilypond.git] / input / regression / spacing-multi-tuplet.ly
1 \version "2.17.11"
2
3  \header{
4
5   texidoc = "Concurrent tuplets should be equidistant on all staves."
6 }
7
8 \paper {ragged-right = ##f }
9
10 \relative c' { 
11   \context StaffGroup << 
12     \new Staff  \context Voice { 
13       \tuplet 10/8 {  c8[ c c c c c c c c c] }
14     }
15     \new Staff  \context Voice { 
16       \tuplet 8/8 {  c8[ c c c c c c c] }
17     }
18   >>
19 }
20
21
22