]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/glissando-chord.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / glissando-chord.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "LilyPond typesets glissandi between chords."
5 }
6
7 \relative {
8   c'1 \glissando g'
9   c,1 \glissando s1 g'
10   <c, e>1 \glissando <g' b>
11   <c, e>1 \glissando s1 <g' b>
12   \set glissandoMap = #'((0 . 1) (1 . 0))
13   <c, g'>1 \glissando s1 <d a'>
14   \set glissandoMap = #'((0 . 0) (0 . 1) (0 . 2))
15   c1 \glissando s1 <d f a>
16   \set glissandoMap = #'((2 . 0) (1 . 0) (0 . 0))
17   <d f a>1 \glissando s1 c
18 }