~ubuntu-branches/ubuntu/precise/lilypond/precise

« back to all changes in this revision

Viewing changes to input/regression/glissando.ly

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Bushnell, BSG
  • Date: 2006-12-19 10:18:12 UTC
  • mfrom: (3.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061219101812-7awtjkp0i393wxty
Tags: 2.8.7-3
scripts/midi2ly.py: When setting DATADIR, find Lilypond python files
in the @TOPLEVEL_VERSION@ directory, not 'current'.  Patch thanks to
Chris Lamb (chris@chris-lamb.co.uk).  (Closes: #400550)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#(ly:set-option 'old-relative)
2
 
\version "2.2.0"
 
1
\version "2.7.39"
3
2
 
4
3
\header{
5
4
 
6
 
texidoc=" Between notes, there may be simple glissando lines.
 
5
  texidoc=" Between notes, there may be simple glissando lines.
7
6
Here, the first two glissandi are not consecutive.
8
7
 
9
8
The engraver does no time-keeping, so it involves some trickery to get
12
11
"
13
12
}
14
13
 
15
 
\score{
16
 
        \context Staff=one \notes\relative c''{
17
 
                     % gliss non gliss and 
18
 
             c4 \glissando d e \glissando f \glissando \break
19
 
             % consecutive 
20
 
             c \glissando d, \glissando e'
21
 
              << { \stemUp e8 \glissando g8 }
22
 
                \context Voice = VB {\stemDown \repeat unfold 4 d16 } >>
23
 
                \override Glissando  #'style = #'zigzag
24
 
                c4 \glissando c,, \glissando c' \glissando d
25
 
    }
26
 
    \paper{
27
 
        linewidth = 50.\mm indent = 0
28
 
        \context{
29
 
               \StaffContext
30
 
               % makes for handier debugging
31
 
               % \remove Clef_engraver
32
 
        }
33
 
    }
34
 
}
 
14
 
 
15
\new Staff \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
  \override Glissando  #'style = #'zigzag
 
23
  c4 \glissando c,, \glissando c' \glissando d
 
24
}
 
25
 
 
26
\layout{
 
27
  line-width = 50.\mm
 
28
  indent = 0
 
29
}
 
30
 
35
31