]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/automatic-polyphony-tabstaff.ly
bed980d736fc3679951bf98531ba0cd12491b198
[lilypond.git] / input / regression / automatic-polyphony-tabstaff.ly
1 \version "2.14.0"
2
3 \header{ texidoc = "In a TabStaff, automatic polyphony can be used without
4                     explicitly initializing separate voices."
5        }
6
7 test = {
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 }