]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/instrument-name-markup.ly
release commit
[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.1.30"
11
12
13 textFlat = \markup {\smaller \flat}
14
15 \score {
16   \notes \new Staff {
17     \set Staff.instrument = \markup { \column < "Clarinetti" { "in B" \textFlat } > }
18     \set Staff.instr = \markup { \smaller  { "Cl(B" \textFlat ")" } }
19
20     { c''1 \break c'' }
21
22   }
23   \paper { raggedright = ##t }
24 }
25
26