]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/rehearsal-mark.ly
release commit
[lilypond.git] / input / regression / rehearsal-mark.ly
1
2
3 \header { texidoc= " Rehearsal marks are printed over barlines. They
4 can be incremented automatically or manually.  "}
5
6
7 \version "2.1.7"
8
9
10 global =  \notes {
11   s1 | \mark "A"
12   s1 | \mark \default 
13   s1 | \mark \default 
14   s1 | \mark "12"
15   s1 | \mark \default 
16   s1 | \mark "A2"
17   s1 | \mark \markup { mark \column < up \bold down > }
18   s1
19 }
20
21 one =  \notes \relative c {
22   c''1 c c c c c c 
23 }
24
25
26 \score{
27 \context Staff  << \global \one >>
28 }
29