]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/instrument-name-markup.ly
*** empty log message ***
[lilypond.git] / input / regression / instrument-name-markup.ly
1 \header {
2
3   texidoc = "Instrument names are set with @code{Staff.instrument} and
4 @code{Staff.instr}. You can enter markup texts to create more funky names,
5 including alterations. "
6
7 }
8
9
10 \version "2.6.0"
11
12
13 textFlat = \markup {\smaller \flat}
14
15
16 \new Staff {
17   \set Staff.instrument = \markup { \column { "Clarinetti" \line { "in B" \textFlat } } }
18   \set Staff.instr = \markup { \smaller  { "Cl(B" \textFlat ")" } }
19
20   { c''1 \break c'' }
21
22 }
23 \layout { raggedright = ##t }
24
25
26