]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/instrument-name-markup.ly
Fix some bugs in the dynamic engraver and PostScript backend
[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 \layout { ragged-right = ##t }
11
12 \version "2.7.39"
13
14 textFlat = \markup {\smaller \flat}
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
24
25