diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2001-01-26 14:59:06 +0100 |
---|---|---|
committer | Jan Nieuwenhuizen <janneke@gnu.org> | 2001-01-26 14:59:06 +0100 |
commit | 5d5ca8642dca9169ddf78949c41381e5f1380975 (patch) | |
tree | 9b6aa8ee920df4606153005746aeb1cdf354c8e1 /input/regression/glissando.ly | |
parent | e01d440915be7b23b804d5886d685ba91617edf0 (diff) |
patch::: 1.3.125.jcn2
1.3.125.jcn2
============
* Moved feature and regression-test input to input/feature, input/regression.
* Added some regtests.
* Bugfix: auto-knee for beam over rest.
* Fixes for Coriolan and viola Solo Cello Suites.
* Replaced generic 'collapse-height' for System_start_delimiter with
brace-collapse-height, bracket-collapse-height, bar-line-collapse-height.
* Bugfix: measure System_start_delimiter's *-collapse-height in staff-space.
Diffstat (limited to 'input/regression/glissando.ly')
-rw-r--r-- | input/regression/glissando.ly | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/input/regression/glissando.ly b/input/regression/glissando.ly new file mode 100644 index 0000000000..115c5c2883 --- /dev/null +++ b/input/regression/glissando.ly @@ -0,0 +1,30 @@ +\header{ + +texidoc=" Simple glissando lines between notes are supported. +The first two glissandi are not consecutive. + +The engraver does no time-keeping, so it involves some trickery to get +< @{ s8 s8 s4 @} @{ c4 \\gliss d4 @} > working correctly. + +"; +} + +\score{ + \context Staff=one \notes\relative c''{ + % gliss non gliss and + c4 \glissando d e \glissando f \glissando \break + % consecutive + c \glissando d \glissando e + < { \stemUp e8 \glissando g8 } + \context Voice = VB {\stemDown \repeat unfold 4 d16 } > + + } + \paper{ + linewidth = 70.\mm; + \translator{ + \StaffContext + % makes for handier debugging + % \remove Clef_engraver; + } + } +} |