]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/rehearsal-mark-align.ly
more conversion for dash-change.
[lilypond.git] / input / regression / rehearsal-mark-align.ly
1
2 \header {
3
4   texidoc = "The rehearsal mark is put on top a breakable symbol,
5   according to the value of @code{rehearsalMarkAlignSymbol}."
6
7 }
8
9 \version "2.7.32"
10   
11 \relative {
12   c1 \mark "foo"
13   \key cis \major
14   \clef alto
15   \set Score.rehearsalMarkAlignSymbol = #'key-signature
16   \mark "on-key"
17   cis
18  \key ces \major
19   \set Score.rehearsalMarkAlignSymbol = #'clef
20   \clef treble
21   \mark "on clef"
22   ces
23 }