]> git.donarmstrong.com Git - lilypond.git/blob - input/test/mark.ly
release: 1.1.24
[lilypond.git] / input / test / mark.ly
1 \version "1.0.14";
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                 \translator { \OrchestralPartStaffContext 
24                         markScriptPadding = "4.0";
25                         markHangOn  = "Bar";
26                         markHangDepth = "1";
27 %                       markDirection = \diown;
28                 }
29         }
30 }