Massive changes - see ChangeLog.
[lilypond.git] / input / regression / instrument-name-markup.ly
blob5a58fb68773661d683f2ee76718e70f876ee94f2
1 \header {
3 texidoc = "Instrument names are set with Staff.instrument and
4 Staff.instr. You can enter markup texts to create more funky names,
5 including alterations. "
10 \version "1.9.0"
13 textFlat = \markup {\smaller \musicglyph #"accidentals--1"}
14 \score {
15 \notes \context Staff = treble {
16 \property Staff.instrument
17 = \markup { \column << "Clarinetti" { "in B" \textFlat } >> }
18 \property Staff.instr
19 = \markup { \smaller { "Cl(B" \textFlat ")" } }
21 { c''1 \break c'' }
24 \paper { linewidth= 8.0\cm }