]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/staff-margin.ly
patch::: 1.3.45.jcn2
[lilypond.git] / input / bugs / staff-margin.ly
1 voice = \notes\relative c'{
2   \property Staff.instrument    = "Voice"
3   \property Staff.instr         = "V."
4
5   % Staff_margin_engraver kan be `fixed' by doing a silly request:
6   %\bar ".|";
7
8   c1\break c \bar "|.";
9
10
11 soprano = \notes\relative c'{
12   \property Staff.instrument    = "Soprano"
13   \property Staff.instr         = "S."
14   c1 c \bar "|.";
15
16
17 tenor = \notes \relative c'{
18   \property Staff.instrument    = "Tenor"
19   \property Staff.instr         = "T."
20   c1 c
21 }
22
23 \score
24 {
25   \context StaffGroup< 
26     \context Staff = "voice"    \voice
27     \context GrandStaff< 
28       \context Staff = "soprano" \soprano
29       \context Staff = "tenor"  \tenor
30     >
31   >
32
33   \paper {
34     indent = 50.0\mm;
35     linewidth = 100.0\mm;
36     \translator { \StaffContext \consists Staff_margin_engraver; }
37   }
38 }