Oh, thanks, I actually solved my problem.
\override Staff.Clef #'stencil = #ly:text- interface::print
                                \override Staff.Clef #'text = \markup {
                                                \lower #0.0 {\musicglyph 
#"clefs.C"}
                                        \raise #3.0 {\flat}
                                        \raise #1.0 {\flat}
                                        \raise #2.5 {\flat}
                                        \hspace #0.1
                                        \raise #2.0 {\musicglyph #"clefs.C"}
                                        \raise #1.25 {\rotate #180.0 \semiflat}
                                        \lower #0.25 {\rotate #180.0 \semiflat}
                                        \raise #1.75 {\rotate #180.0 \semiflat}
                                        \hspace #0.1
                                }

That was what it finally looked like. I had to combine the two to get it all together, but I got it. ^_^


Am 05.06.2008 um 11:37 schrieb Mats Bengtsson:

As long as you don't have any \key command in your code, no key signature at all will be
typeset. Just add a
\key c \major
(or whatever signature) to get the desired symbol.

I hope you know about the built-in capabilities in LilyPond to handle non-standard key signatures. As long as you only want to have normal flat and sharp symbols in your custom key signature, there should be no need to typeset it manually using markups.

  /Mats

James E. Bailey wrote:
I'm trying some things and I expected a flat symbol on the bottom line but got nothing.
{
\override Staff.Clef #'stencil = #ly:text-interface::print
\override Staff.Clef #'text = \markup \musicglyph #"clefs.C"
\override Staff.KeySignature #'stencil = #ly:text-interface::print
\override Staff.KeySignature #'text = \markup \musicglyph #"accidentals.flat"
s1
}

Any ideas as to why?


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

--
=============================================
        Mats Bengtsson
        Signal Processing
        School of Electrical Engineering
        Royal Institute of Technology (KTH)
        SE-100 44  STOCKHOLM
        Sweden
        Phone: (+46) 8 790 8463                         
      Fax:   (+46) 8 790 7260
        Email: [EMAIL PROTECTED]
        WWW: http://www.s3.kth.se/~mabe
=============================================




_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to