lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Custom Key Signatures


From: Hans Aberg
Subject: Re: Custom Key Signatures
Date: Thu, 13 Nov 2014 20:23:12 +0100

> On 13 Nov 2014, at 18:13, address@hidden 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 {}
}

----




reply via email to

[Prev in Thread] Current Thread [Next in Thread]