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