]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-glissando-in-tablature.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[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
22 myMusic = \relative c' {
23   <c e g>1 \glissando <f a c>
24 }
25
26 \score {
27   <<
28     \new Staff {
29       \clef "treble_8"
30       \myMusic
31     }
32     \new TabStaff \myMusic
33   >>
34 }
35
36 \score {
37   <<
38     \new Staff {
39       \clef "treble_8"
40       \myMusic
41     }
42     \new TabStaff \with { \override Glissando.style = #'none } {
43       \myMusic
44     }
45   >>
46 }