This library allows you to write Lilypond scores with Chromatic-Solfege.
This chromatic-solfege.ly
allows you to write Lilypond scores with Chromatic-Solfege.
Place the chromatic-solfege.ly
to your include directory or the same
directory with your lilypond document.
Include chromatic-solfege.ly
then call the language
directive with a
parameter chromatic-solfege
.
\version "2.18.2"
\include "chromatic-solfege.ly"
\language "chromatic-solfege"
\score {
\relative do' {
\clef treble
\time 4/4
\key do \major
do 4 di re ri
mi fa fi sol
si la li ti
do 2 r2
}
}