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