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