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