]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/instrument-name.ly
* lily/system-start-delimiter.cc (print): allow style = text too.
[lilypond.git] / input / regression / instrument-name.ly
1 \version "2.7.13"
2 \header{
3   texidoc="
4 Staff margins are also markings attached to barlines.  They should be
5 left of the staff, and be centered vertically with respect to the staff.  
6 They may be on normal staves, but also on compound staves, like the 
7 PianoStaff.
8 "
9 }
10
11 \layout {
12   raggedright = ##t
13 }
14
15
16
17
18
19
20
21 \context PianoStaff <<
22   \context Staff = "treble"    {
23     \set PianoStaff.instrument = "Piano"
24     \set Staff.instrument = "Right" { c''4 }}
25   \context Staff = "bass" {
26     \set Staff.instrument = "Left"
27     \clef bass c4
28   }
29 >>
30
31
32
33