]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spanner-alignment.ly
Imported Upstream version 2.16.0
[lilypond.git] / input / regression / spanner-alignment.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc = "Spanners align to musical grobs in paper columns,
5 ignoring things like pedal marks.
6
7 "
8 }
9
10 \score {
11   <<
12     \new PianoStaff <<
13       \new Staff = "up" {
14         \clef treble
15         \repeat unfold 32 c'4
16       }
17       \new Dynamics = "dynamics" {
18         \repeat unfold 2 {
19           s1\cresc s1\f s1\dim s1\p
20         }
21       }
22       \new Staff = "down" {
23         \clef bass
24         \repeat unfold 32 c4
25       }
26       \new Dynamics= "pedal" {
27         \repeat unfold 2 {
28           s1\sustainOn s1\sustainOff
29         }
30       }
31     >>
32   >>
33 }