]> git.donarmstrong.com Git - lilypond.git/blob - input/test/staff-bracket.ly
* buildscripts/mf-to-table.py (base): break table every three
[lilypond.git] / input / test / staff-bracket.ly
1 \version "1.7.18"
2
3 \header{texidoc = "@cindex Staff Bracket
4 Here's an example of staff brackets. "
5 }
6
7 \score
8 {
9   \context StaffGroup = a < 
10     % this is broken until further notice -- see refman
11     % \property Staff.StaffSymbol \override #'line-count = #4
12     \context Staff \outputproperty #(make-type-checker 'staff-symbol-interface)
13       #'line-count = #4
14     \context PianoStaff = b <
15       \context Staff = "c" \notes\relative c'' { b1 }
16       \context Staff = "d" \notes\relative c'' { b1 }
17     >
18   >
19
20   \paper {
21         indent=100.0\mm
22         linewidth=150.0\mm
23     \translator
24     {
25       \StaffContext
26       \consists Instrument_name_engraver
27     }
28         raggedright=##t
29   }
30 }
31