]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/double-glissando.ly
Docs: run convert-ly for 2.14.0.
[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.0"
8
9 \header {
10   lsrtags = "expressive-marks, simultaneous-notes"
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 \relative c {
21   \clef bass
22   <<
23     {
24       % new voice ( = \voiceOne), hidden
25       \hideNotes
26       % attach glissando to note heads
27       e2\glissando g
28     }
29     \\
30     {
31       % original voice with chords rearranged so that
32       % glissando is attached to a & c
33       <e a,>2\glissando <g c,>
34     }
35   >>
36 }
37