]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/double-glissando.ly
b780060432c875140b80449f206a2bcf238c1774
[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, contemporary-notation, simultaneous-notes"
11
12 %% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c
13   texidocfr = "
14 La connection d'accords par des glissandos s'obtient par l'ajout d'un
15 deuxième glissando dans une voix masquée.
16
17 "
18   doctitlefr = "Double glissando"
19
20   texidoc = "
21 To connect chords with glissando lines, attach a second glissando to a
22 hidden voice.
23
24 "
25   doctitle = "Double glissando"
26 } % begin verbatim
27
28
29 \relative c {
30   \clef bass
31   <<
32     {
33       % new voice ( = \voiceOne), hidden
34       \hideNotes
35       % attach glissando to note heads
36       e2\glissando g
37     }
38     \\
39     {
40       % original voice with chords rearranged so that
41       % glissando is attached to a & c
42       <e a,>2\glissando <g c,>
43     }
44   >>
45 }
46