]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/alignment-order.ly
Make relative-includes configurable with a -d option.
[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.11.51"
7
8 \paper {
9   ragged-right = ##t
10 }
11
12 \relative <<
13   \new Staff = "1" { c4 c s2 }
14   \new Staff = "2" { c4  c s2 }
15   \new Staff = "3" { c4  c s2 }
16   { \skip 2
17     <<
18       \lyrics {
19         \set alignBelowContext = #"1"
20         below8 first staff
21       }
22       \new Staff {
23         \set Staff.alignAboveContext = #"3"
24         \times 4/6 {
25           \override TextScript #'padding = #3
26           c8^"this" d_"staff" e^"above" d_"last" e^"staff" f
27         }
28       }
29     >> }
30 >>