]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-full-notation.ly
New tablature features
[lilypond.git] / input / regression / tablature-full-notation.ly
1 \version "2.13.4"
2
3 \header{ texidoc = "As default, tablature staves show only the fret numbers, because
4                     in most situations, they are combined with normal staves.
5                     When used without standard notation, @code{tabFullNotation}
6                     can be used."
7        }
8
9 tabstuff = {
10   \time 3/4
11   c4^"test" d( e)
12   f4\f g a^\fermata
13   c8\<\( c16 c ~ c2\!
14   c'2.\)
15   \mark \default
16   R2.
17   r4 d4 r8 e
18   \times 3/4 { b4 c \glissando d\5 \glissando c }
19   c4. d-_( e\varcoda)
20   ->f g~ a\prall g\thumb e-.
21   \bar "|."
22 }
23
24 \score {
25   <<
26     \new Staff { \clef "G_8" \tabstuff }
27     \new TabStaff   { \tabstuff }
28   >>
29 }
30
31 \score {
32   \new TabStaff {
33     \tabFullNotation
34     \tabstuff
35   }
36 }