]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/double-glissando.ly
Update snippets from today's LSR with changed makelsr.py
[lilypond.git] / Documentation / snippets / double-glissando.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.14.2"
8
9 \header {
10   lsrtags = "expressive-marks, workaround, simultaneous-notes, contemporary-notation"
11
12   texidoc = "
13 To connect chords with glissando lines, attach a second glissando to a
14 hidden voice.
15
16 "
17   doctitle = "Double glissando"
18 } % begin verbatim
19
20
21 \relative c {
22   \clef bass
23   <<
24     {
25       % new voice ( = \voiceOne), hidden
26       \hideNotes
27       % attach glissando to note heads
28       e2\glissando g
29     }
30     \\
31     {
32       % original voice with chords rearranged so that
33       % glissando is attached to a & c
34       <e a,>2\glissando <g c,>
35     }
36   >>
37 }