]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/bar-scripts.ly
(conv): dashes rule.
[lilypond.git] / input / regression / bar-scripts.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.1"
3 \header{
4 texidoc="
5
6 Markings that are attached to (invisible) barlines are 
7 delicate: the are attached to the rest of the score without the score
8 knowing it.  Consequently, they fall over  often.
9 "
10 }
11
12
13 onestaff =  \context Staff = foo\notes\relative c''  {
14         \property Staff.instr = instr
15         \property Staff.instrument = instrument \mark "B"
16          c1 \mark "A" \break c2  c2 \break
17 }
18
19 grstaff =  \notes \relative c'' \context GrandStaff <
20         \context Staff = bar {
21
22         \property Staff.instr = instr
23         
24          \mark "B" \break c1 \mark "A" c2  }
25         \context Staff = bufl { c1 c2  }
26 >
27
28
29 \score {\grstaff}
30