]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/rehearsal-mark-letter.ly
* input/regression/rehearsal-mark-number.ly: new file.
[lilypond.git] / input / regression / rehearsal-mark-letter.ly
1
2
3 \header { texidoc= "Rehearsal marks in letter style: the I is skipped,
4 and after Z, we continue with double letters.  The mark may be set
5 with @code{\mark NUMBER}, or with @code{Score.rehearsalMark}."
6       }
7
8 \version "2.1.7"
9
10
11 global =  \notes {
12   s1 | \mark #6
13   s1 | \mark \default
14   s1 | \mark \default
15   s1 | \mark \default
16   \property Score.rehearsalMark = #24
17   s1 | \mark \default
18   s1 | \mark \default
19   }
20
21
22 one =  \notes \relative c {
23   c''1 c c c c c c 
24 }
25
26
27 \score{
28 \context Staff  << \global \one >>
29 }
30