]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-tremolo.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / tablature-tremolo.ly
1 \version "2.14.0"
2
3 \header {
4
5   texidoc = "
6 Tremolos will appear on tablature staffs only if
7 @code{\\tabFullNotation} is active.  Otherwise, no
8 tremolo indications are displayed on the TabStaff.
9 Also, tablature beams are the same thickness on TabStaff
10 and Staff."
11
12   doctitle = "Tablature tremolo"
13 }
14
15 music = {
16   <c e g c' e'>4:16
17   \stemUp
18   \repeat tremolo 4 c'16
19   \repeat tremolo 2 { c16 d }
20   \repeat tremolo 4 { <c d>16 }
21 }
22
23 \score {
24   <<
25     \new Staff {
26       \clef "treble_8"
27       \music
28     }
29     \new TabStaff {
30       \music
31     }
32   >>
33 }
34
35 \score {
36   \new TabStaff {
37     \tabFullNotation
38     \music
39   }
40 }
41