]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/glissando.ly
115c5c2883eba0a5e78e8e9529f01efc402d8150
[lilypond.git] / input / regression / glissando.ly
1 \header{
2
3 texidoc=" Simple glissando lines between notes are supported.
4 The first two glissandi are not consecutive.
5
6 The engraver does no time-keeping, so it involves some trickery to get
7 < @{ s8 s8 s4 @} @{ c4 \\gliss d4 @} > working correctly.
8
9 ";
10 }
11
12 \score{
13         \context Staff=one \notes\relative c''{
14                      % gliss non gliss and 
15              c4 \glissando d e \glissando f \glissando \break
16              % consecutive 
17              c \glissando d \glissando e
18               < { \stemUp e8 \glissando g8 }
19                 \context Voice = VB {\stemDown \repeat unfold 4 d16 } >
20              
21     }
22     \paper{
23         linewidth = 70.\mm;
24         \translator{
25                \StaffContext
26                % makes for handier debugging
27                % \remove Clef_engraver;
28         }
29     }
30 }