1\version "2.19.21"
2
3\header {
4  texidoc = "Tuplet numbers are positioned next to kneed beams."
5}
6
7\layout {
8  indent = 0
9  ragged-right = ##t
10}
11
12top = \change Staff = "1"
13bottom = \change Staff = "2"
14
15music = \relative {
16  \time 3/4
17  \override Beam.auto-knee-gap = 1
18  \tuplet 3/2 4 {
19    c8 g' \top e'
20    c'8 e, \bottom g,
21    \top e''8 \bottom c,, \top g''
22    g,8 e''' c,,
23    c''8 g,, e'
24    g,8 c''' e,,
25  }
26}
27
28\score {
29  \new PianoStaff <<
30    \new Staff = "1" {
31      s2.
32      s2.
33    }
34    \new Staff = "2" {
35      \clef bass
36      \music
37    }
38  >>
39}
40