]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/part-combine-tuplet-single.ly
2a2e100a3f8038e15e2b277df4adb711651d514e
[lilypond.git] / input / regression / part-combine-tuplet-single.ly
1
2 \header {
3   texidoc = "Tuplets in combined parts only print one bracket."
4   }
5
6 \paper { ragged-right = ##T }
7
8 \version "2.12.0"
9
10 \score {
11   <<
12     \new Staff {
13       \partcombine
14       \relative c'' {
15         \times 2/3 { d4 d d ~ } d2
16       }
17       \relative c'' {
18         \times 2/3 { b4 a g ~ } g2
19       }
20     }
21   >>
22 }