]> git.donarmstrong.com Git - lilypond.git/blob - input/test/mark.ly
8feb99bfa4486406a014d08d663b99a332fbf0d2
[lilypond.git] / input / test / mark.ly
1 \version "1.0.6";
2
3 global = \notes {
4   s1 | \mark "A";
5   s1*2 | \mark "'12";
6 }
7
8 one = \notes\relative c{
9   c'' c c c
10   c c c c
11   c c c c
12 }
13
14 two = \notes\relative c{
15   b' b b b
16   b b b b
17   b b b b
18 }
19
20 \score{
21         < \global \one \two >
22         \paper {
23                 \include "score-bar-numbering.ly";
24         }
25 }