]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/layout-from.ly
Merge branch 'lilypond/translation' into staging
[lilypond.git] / input / regression / layout-from.ly
1 \version "2.15.31"
2
3 \header {
4   texidoc = "
5 @code{\\layout-from} can interpret property-setting music for changing
6 context definitions inside of layout definitions like @code{\\layout}
7 or @code{\\midi}.
8 "
9 }
10
11 \score {
12   \relative c' { cis cis cis cis }
13   \layout {
14     \layout-from { \accidentalStyle "dodecaphonic" }
15   }
16   \midi {
17     \layout-from { \tempo 4 = 240 }
18   }
19 }