> On 13 Nov 2014, at 18:13, st...@linuxsuite.org wrote:

>            I want to make a custom key signature. It should have f# c# a#
> 
>           How can I do this?

LilyPond supports custom transposable key signatures, as in the example below.


----
\version "2.19.15"


hitzaz = #`(
  (0 . 0)
  (1 . ,FLAT)
  (2 . 0)
  (3 . 0)
  (4 . 0)
  (5 . ,FLAT)
  (6 . ,FLAT)
)

\language "english"

music = <<
  \new Staff {
  \tempo 4 = 120

  \override Score.RehearsalMark #'break-align-symbols = #'(key-signature)
  \key fs \hitzaz    \mark \markup { \tiny \italic {"F" \sharp " hitzaz"} }

  \time 11/16
  \set beatStructure = #'(4 3 4)

  \relative d' {
     cs16 ds e fs  g16 as b  cs d e fs |
    }
  }
>>


\score {
  \music
  \layout {}
}

\score {
  \unfoldRepeats % \articulate
    \music
  \midi {}
}

----


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

Reply via email to