]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-full-notation.ly
Merge remote-tracking branch 'origin/translation' into staging
[lilypond.git] / input / regression / tablature-full-notation.ly
1 \version "2.19.2"
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   \compressFullBarRests
12   c4^"test" d( e) |
13   f4\f g a^\fermata |
14   R2.*3 |
15   c8\<\( c16 c ~ 2\! |
16   \mark \default
17   c'2.\) |
18   \ottava #1
19   r4 d'4 r8 e |
20   \ottava #0
21   \tuplet 4/3 { b,4 c \glissando d\5 \glissando c } |
22   c4. d-_( |
23   e\varcoda-> )
24   \override TextSpanner.bound-details.left.text = "rit." f\startTextSpan |
25   g ~ g\prall |
26   g\thumb e-.\stopTextSpan
27   \bar "|."
28 }
29
30 #(set-global-staff-size 18)
31
32 \score {
33   <<
34     \new Staff { \clef "G_8" \tabstuff }
35     \new TabStaff   { \tabstuff }
36   >>
37 }
38
39 \score {
40   \new TabStaff {
41     \tabFullNotation
42     \tabstuff
43   }
44 }