Fix crash
[orchestrallily.git] / testsuite / staff-variable.ly
blobc36d28815615e7d3e3a223f532cad51fe7486a72
1 \version "2.13.17"
2 \include "../orchestrallily.ly"
4 \header { title = "Defining a staff as a variable" }
6 TestIiMusic = \relative c' { c4 d e f }
7 TestIiiMusic = \relative c' { f4 g a b }
9 TestIiiStaff = \new Staff = "SomeStaffID"
10 \with { \remove Staff_symbol_engraver
11 \override StaffSymbol #'line-count = #3 }
12 << \TestIiiMusic >>
14 \markuplines \justified-lines {The second staff is not auto-generated, but defined manually in TestIiiStaff!}
16 \createScore #"Test" #'("Ii" "Iii")