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