]> git.donarmstrong.com Git - lilypond.git/blob - input/test/staff-bracket.ly
reformulate texidocs.
[lilypond.git] / input / test / staff-bracket.ly
1 \version "2.1.26"
2
3 \header{texidoc = "@cindex Staff Bracket
4 In a music with piano accompaniment, staff brackets, like the one in 
5 this example can be used. "
6 }
7
8 \score
9 {
10   \new StaffGroup \notes \relative c'' <<
11       \new Staff {  b1 }
12     \new PianoStaff <<
13       \new Staff \notes { b1 }
14       \new Staff \notes { b1 }
15     >> 
16   >>
17
18   \paper {
19     \translator
20     {
21       \StaffContext
22       \consists Instrument_name_engraver
23     }
24     raggedright=##t
25   }
26 }
27