]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/double-glissando.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / double-glissando.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.29"
5
6 \header {
7   lsrtags = "expressive-marks, simultaneous-notes"
8
9   texidoc = "
10 To connect chords with glissando lines, attach a second glissando to a
11 hidden voice.
12
13 "
14   doctitle = "Double glissando"
15 } % begin verbatim
16
17 \relative c {
18   \clef bass
19   <<
20     {
21       % new voice ( = \voiceOne), hidden
22       \hideNotes
23       % attach glissando to note heads
24       e2\glissando g
25     }
26     \\
27     {
28       % original voice with chords rearranged so that
29       % glissando is attached to a & c
30       <e a,>2\glissando <g c,>
31     }
32   >>
33 }
34