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