]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/glissando-chord.ly
Adds a regtest for glissando index.
[lilypond.git] / input / regression / glissando-chord.ly
1 % FIXME: this is a fake version number to allow git master
2 % to compile.  See discussion on lilypond-devel.
3 \version "2.13.61"
4
5 \header {
6   texidoc = "LilyPond typesets glissandi between chords."
7 }
8
9 \relative c' {
10   c1 \glissando g'
11   c,1 \glissando s1 g'
12   <c, e>1 \glissando <g' b>
13   <c, e>1 \glissando s1 <g' b>
14   \set glissandoMap = #'((0 . 1) (1 . 0))
15   <c, g'>1 \glissando s1 <d a'>
16   \set glissandoMap = #'((0 . 0) (0 . 1) (0 . 2))
17   c1 \glissando s1 <d f a>
18   \set glissandoMap = #'((2 . 0) (1 . 0) (0 . 0))
19   <d f a>1 \glissando s1 c
20 }