]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/bar-scripts.ly
* scm/bass-figure.scm (make-bass-figure-markup): add
[lilypond.git] / input / regression / bar-scripts.ly
1 \version "1.7.18"
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
12 onestaff =  \context Staff = foo\notes\relative c''  {
13         \property Staff.instr = instr
14         \property Staff.instrument = instrument \mark "B"
15          c1 \mark "A" \break c2  c2 \break
16 }
17
18 grstaff =  \notes \relative c'' \context GrandStaff <
19         \context Staff = bar {
20
21         \property Staff.instr = instr
22         
23          \mark "B" \break c1 \mark "A" c2  }
24         \context Staff = bufl { c1 c2  }
25 >
26
27
28 \score {\grstaff}
29