I have to create this key signature in lilypond:
Would it be possible to create something like that?
I really appreciate any help you can provide.
Thanks!
% LilyBin
\score{
{
\set Staff.keySignature = #`((-1 . ,FLAT) (3 . ,SHARP))
\time 9/8
\override Staff.KeySignature.stencil = #ly:text-interface::print
\override Staff.KeySignature.text =
\markup {
\concat {
\musicglyph #"accidentals.flat"
\lower #0.4 \super \fontsize #-3 2
}
\concat {
\raise #2 \musicglyph #"accidentals.sharp"
\raise #1.6 \super \fontsize #-3 3
}
}
s4.*3
}
\layout{}
\midi{}
}
Lilybin: http://lilybin.com/ugfo88/1 Thanks to yoker from IRC
This works in latest stable 2.18.2
\relative c' {
\set Staff.keySignature = #`((6 . ,FLAT)
(3 . ,SHARP))
c4 d e fis
aes4 bes c2
}