]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/bar-scripts.ly
patch::: 1.3.134.jcn1
[lilypond.git] / input / regression / bar-scripts.ly
1 \header{
2 texidoc="
3 Markings that are attached to (invisible) barlines are 
4 delicate: the are attached to the rest of the score without the score
5 knowing it.  Consequently, they fall over  often.
6 ";
7 }
8
9
10
11 onestaff =  \context Staff = foo\notes  {
12         \property Staff.instr = instr
13         \property Staff.instrument = instrument \mark "B";
14          c1 \mark "A"; \break c2  c2 \break
15 }
16
17 grstaff =  \notes \context GrandStaff <
18         \context Staff = bar {
19
20         \property Staff.instr = instr
21         
22          \mark "B"; \break c1 \mark "A"; c2  }
23         \context Staff = bufl { c1 c2  }
24 >
25
26 scpaper =  \paper {\translator {\OrchestralScoreContext}}
27 % stpaper =  \paper{ \translator {\BarNumberingStaffContext }}
28 stpaper =  \paper{ }
29
30 scscore =  \score { \grstaff \paper {
31 \scpaper
32 }}
33
34
35 stscore =  \score { \onestaff \paper {
36  \stpaper
37 }}
38
39 %\score {\stscore}
40 \score {\scscore
41 \header { title = "bar scripts"; }
42 }