]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/instrument-name-markup.ly
* input/regression/accidental-octave.ly (texidoc): shorten.
[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 "1.9.8"
11
12
13 textFlat = \markup {\smaller \musicglyph #"accidentals--1"}
14
15 \score {
16   \notes \new Staff {
17     \property Staff.instrument
18         = \markup { \column < "Clarinetti" { "in B" \textFlat } > }
19     \property Staff.instr
20         = \markup { \smaller  { "Cl(B" \textFlat ")" } }
21
22     { c''1 \break c'' }
23
24   }
25   \paper { raggedright = ##t }
26 }
27
28