]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/instrument-name-markup.ly
* lily/new-chord-name-engraver.cc (process_music): give original
[lilypond.git] / input / regression / instrument-name-markup.ly
1 \header {
2
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. "
6
7 }
8
9
10 \version "1.7.6"
11
12
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 ")" } }
20
21     { c''1 \break c'' }
22
23   }
24   \paper { linewidth= 8.0\cm }
25 }
26
27 %% new-chords-done %%