]> git.donarmstrong.com Git - lilypond.git/blob - input/test/instrument-name-align.ly
3d982c68c0f78a4a955a2a79ef873013930b1a35
[lilypond.git] / input / test / instrument-name-align.ly
1
2 \header {
3
4
5   texidoc = "instrument names may be aligned manually by putting the
6 names in padded boxes with @code{\markup}."
7
8
9 }
10
11 \version "2.9.13"
12
13 \paper {
14   line-width = 15\cm
15 }
16
17
18 \new StaffGroup \relative
19 <<
20   \new Staff {
21     \set Staff.instrumentName = \markup { \hcenter-in #10 "blabla" }
22     c1 c1
23   } 
24   \new Staff {
25     \set Staff.instrumentName = \markup { \hcenter-in #10 "blo" }
26     c1 c1
27   } 
28   
29 >>