]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/bar-scripts.ly
covnert-ly
[lilypond.git] / input / regression / bar-scripts.ly
1 \version "1.5.68"
2 \header{
3 texidoc="
4 Markings that are attached to (invisible) barlines are 
5 delicate: the are attached to the rest of the score without the score
6 knowing it.  Consequently, they fall over  often.
7 "
8 }
9
10
11
12 onestaff =  \context Staff = foo\notes  {
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 \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 scpaper =  \paper {\translator {\OrchestralScoreContext}}
28 % stpaper =  \paper{ \translator {\BarNumberingStaffContext }}
29 stpaper =  \paper{ }
30
31 scscore =  \score { \grstaff \paper {
32 \scpaper
33 }}
34
35
36 stscore =  \score { \onestaff \paper {
37  \stpaper
38 }}
39
40 %\score {\stscore}
41 \score {\scscore
42 \header { title = "bar scripts" }
43 }