Fix crash
[orchestrallily.git] / testsuite / figuredbass.ly
bloba81064423a6921d19c21cf37bccc10722c25975b
1 \version "2.13.17"
2 \include "../orchestrallily.ly"
3 \paper { ragged-bottom=##t }
6 \header { title = "Figured Bass" }
8 TestIMusic = { c''1 }
9 TestFBMusic = \figuremode { <6>4 <_+! [7 3-] _ 8>16 s16 s8 s4 s8 <8> }
10 TestFBiMusic = \TestFBMusic
12 \orchestralScoreStructure #'(
13 ("staff" "ParallelVoicesStaff" ("I" "FBi"))
14 ; if no child is given, the name (here FB) is used for the music
15 ("FB" "FiguredBass" ())
16 ; equivalent to the line above!
17 ("FigB" "FiguredBass" ("FB"))
19 \orchestralVoiceTypes #'(
20 ("FBi" "FiguredBass")
23 TestPieceName = "Staff with Figured bass"
24 \createScore #"Test" #'("staff")
26 TestPieceName = "Figured bass without staff"
27 \createScore #"Test" #'("FB")
28 \createScore #"Test" #'("FigB")