Home
Random
Log in
Settings
About LilyPond wiki
LilyPond wiki
Search
Editing
New pitch language
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
<span id="how-to-create-your-own-notes-language"></span> = How to create your own notes language: = For Example, pitches in my 'alpha' language: Only one letter per note, the whole alphabet is used "m, q, r & s": remaining available for minor chord, chord repeats, rest & blank. <span id="for-use-with-frescobaldi-transposing-translating"></span> == For use with Frescobaldi (transposing, translating): == Add the following lines to : ''ly/pitch/__init__.py''<br /> <code> 'alpha': ( ('c', 'd', 'e', 'f', 'g', 'a', 'b'), ('eses', 'eseh', 'es', 'eh', '', 'ih', 'is', 'isih', 'isis'), (('aes', 'h'), ('bes', 'i'), ('ces', 'j'), ('des', 'k'), ('ees', 'l'), ('fes', 'n'), ('ges', 'o'), ('ais', 't'), ('bis', 'u'), ('cis', 'v'), ('dis', 'w'), ('eis', 'x'), ('fis', 'y'), ('gis', 'z')) ), </code> <br /> <lilypond version="2.24.0"> \version "2.24.0" \header{footer = "" tagline = "" } alpha = #(append (assoc-get 'nederlands language-pitch-names) `( (h . ,(ly:make-pitch -1 5 FLAT)) (i . ,(ly:make-pitch -1 6 FLAT)) (j . ,(ly:make-pitch -1 0 FLAT)) (k . ,(ly:make-pitch -1 1 FLAT)) (l . ,(ly:make-pitch -1 2 FLAT)) (n . ,(ly:make-pitch -1 3 FLAT)) (o . ,(ly:make-pitch -1 4 FLAT)) (p . ,(ly:make-pitch -1 6 DOUBLE-FLAT)) (t . ,(ly:make-pitch -1 5 SHARP)) (u . ,(ly:make-pitch -1 6 SHARP)) (v . ,(ly:make-pitch -1 0 SHARP)) (w . ,(ly:make-pitch -1 1 SHARP)) (x . ,(ly:make-pitch -1 2 SHARP)) (y . ,(ly:make-pitch -1 3 SHARP)) (z . ,(ly:make-pitch -1 4 SHARP)) )) pitchnames = \alpha #(ly:parser-set-note-names pitchnames) \language "alpha" \score { << \new Voice = "one" { \relative c''{ \time 7/4 t u v w x y z <a a,> b, c d e f <g g,> h, i j k l n o p, } } \new Lyrics \lyricsto "one" { t u v w x y z a b c d e f g h i j k l n o p } >> } </lilypond> [[Category:Pitches]]
Summary:
Please note that all contributions to LilyPond wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Meta:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)