]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/alignment-order.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / alignment-order.ly
1 \header {
2   texidoc = "Newly created contexts can be inserted
3 anywhere in the vertical alignment. "
4 }
5
6 \version "2.19.21"
7
8 \paper {
9   ragged-right = ##t
10 }
11
12 \relative <<
13   \new Staff = "1" { c'2 c s1 }
14   \new Staff = "2" { c2  c s1 }
15   \new StaffGroup <<
16     \new Staff = "3" { c2  c s1 }
17     { \skip 1
18     <<
19       \lyrics {
20         \set alignBelowContext = #"1"
21         below4 first staff
22       }
23       \new Staff {
24         \set Staff.alignAboveContext = #"3"
25         \tuplet 6/4 {
26           \override TextScript.padding = #3
27           c4^"this" d_"staff" e^"above" d_"last" e^"staff" f
28         }
29       }
30     >> }
31   >>
32 >>