]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/glissando.ly
(note-name->markup): don't superscript root
[lilypond.git] / input / regression / glissando.ly
1 \version "1.7.22"
2
3 \header{
4
5 texidoc=" Simple glissando lines between notes are supported.
6 The first two glissandi are not consecutive.
7
8 The engraver does no time-keeping, so it involves some trickery to get
9 < @{ s8 s8 s4 @} @{ c4 \\gliss d4 @} > working correctly.
10
11 "
12 }
13
14 \score{
15         \context Staff=one \notes\relative c''{
16                      % gliss non gliss and 
17              c4 \glissando d e \glissando f \glissando \break
18              % consecutive 
19              c \glissando d, \glissando e'
20               < { \stemUp e8 \glissando g8 }
21                 \context Voice = VB {\stemDown \repeat unfold 4 d16 } >
22                 \property Voice.Glissando \override #'style = #'zigzag
23                 c4 \glissando c,, \glissando c' \glissando d
24     }
25     \paper{
26         linewidth = 50.\mm indent = 0
27         \translator{
28                \StaffContext
29                % makes for handier debugging
30                % \remove Clef_engraver
31         }
32     }
33 }
34 %% new-chords-done %%