]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-glissando-in-tablature.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / chord-glissando-in-tablature.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.16.0"
8
9 \header {
10   lsrtags = "fretted-strings"
11
12   texidoc = "
13 Slides for chords can be indicated in both @code{Staff} and
14 @code{TabStaff}. String numbers are necessary for @code{TabStaff}
15 because automatic string calculations are different for chords and for
16 single notes.
17
18 "
19   doctitle = "Chord glissando in tablature"
20 } % begin verbatim
21
22 myMusic = \relative c' {
23   <c\3 e\2 g\1>1 \glissando <f\3 a\2 c\1>
24 }
25
26 \score {
27   <<
28     \new Staff {
29       \clef "treble_8"
30       \myMusic
31     }
32     \new TabStaff {
33       \myMusic
34     }
35   >>
36 }