]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/double-glissando.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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.11.62"
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 \relative c {
16   \clef bass
17   <<
18     {
19       % new voice ( = \voiceOne), hidden
20       \hideNotes
21       % attach glissando to note heads
22       e2\glissando g
23     }
24     \\
25     { 
26       % original voice with chords rearranged so that
27       % glissando is attached to a & c
28       <e a,>2\glissando <g c,>
29     }
30   >>
31 }