]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/tablature-chord-glissando.ly
Compile fix #1: Document restCompletionBusy.
[lilypond.git] / Documentation / snippets / new / tablature-chord-glissando.ly
1 \version "2.13.49"
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 and @code{\chordGlissando} draws lines between single notes.
10 "
11   doctitle = "Chord glissando in tablature"
12 }
13
14 \include "chord-glissando-init.ly"
15
16 myMusic = \relative c' {
17   \chordGlissando
18   <c\3 e\2 g\1>8 <f\3 a\2 c\1>
19 }
20
21 \score {
22   <<
23     \new Staff {
24       \clef "treble_8"
25       \myMusic
26     }
27     \new TabStaff {
28       \myMusic
29     }
30   >>
31 }