]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/chord-glissando-in-tablature.ly
cdf270278dedd738451be278fc9ffdf87a03d3b8
[lilypond.git] / Documentation / snippets / new / chord-glissando-in-tablature.ly
1 \version "2.13.53"
2
3 \header {
4   lsrtags = "fretted-strings"
5   texidoc = "
6 Slides for chords can be indicated in both Staff and TabStaff.
7 String numbers are necessary for TabStaff because automatic
8 string calculations are different for chords and for single notes.
9 "
10   doctitle = "Chord glissando in tablature"
11 }
12
13 myMusic = \relative c' {
14   <c\3 e\2 g\1>1 \glissando <f\3 a\2 c\1>
15 }
16
17 \score {
18   <<
19     \new Staff {
20       \clef "treble_8"
21       \myMusic
22     }
23     \new TabStaff {
24       \myMusic
25     }
26   >>
27 }