]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-glissando-in-tablature.ly
Import snippets from LSR and delete initial batch in snippets/new
[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.di.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.18.0"
8
9 \header {
10   lsrtags = "fretted-strings"
11
12   texidoc = "
13 Slides for chords are indicated by default 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 %=> http://lilypond.1069038.n5.nabble.com/LSR-chord-glissando-in-tablature-obsolete-tc159863.html
22
23 myMusic = \relative c' {
24   <c e g>1 \glissando <f a c>
25 }
26
27 \score {
28   <<
29     \new Staff {
30       \clef "treble_8"
31       \myMusic
32     }
33     \new TabStaff \myMusic
34   >>
35 }
36
37 \score {
38   <<
39     \new Staff {
40       \clef "treble_8"
41       \myMusic
42     }
43     \new TabStaff \with { \override Glissando.style = #'none } {
44       \myMusic
45     }
46   >>
47 }