1\version "2.16.0"
2
3\header{ texidoc = "In a TabStaff, automatic polyphony can be used without
4                    explicitly initializing separate voices."
5       }
6
7test = {
8  c'1
9  << { c'4 d' e' f' } \\ { g,1 } >>
10  c'1
11}
12
13\score {
14  <<
15    \new Staff { \clef "treble_8" \test }
16    \new TabStaff { \test }
17  >>
18}
19