I have this test program, se below, but I get
unexpected EVENT_FUNCTION
     \transpose c cis $mus
\rightHandFinger \markup\normal-text\bold\fontsize #0 $txt


How would I do this correctly?

// Anders


%% Start
\version "2.19.15"

meTrans =
#(define-music-function (parser location mus txt) (ly:music? string?)
   #{
\transpose c cis $mus \rightHandFinger \markup\normal-text\bold\fontsize #0 $txt
   #}
   )


  {
\transpose c cis c' \rightHandFinger \markup\normal-text\bold \fontsize #0 "A"
  \meTrans c' "a"
  }
%% End

--
English isn't my first language.
So any error or strangeness is due to the translation.
Please correct my English so that I may become better.
\version "2.19.15"

meTrans =
#(define-music-function (parser location mus txt) (ly:music? string?)
   #{
     \transpose c cis $mus \rightHandFinger \markup\normal-text\bold\fontsize #0 $txt
   #}
   )


  {
  \transpose c cis c' \rightHandFinger \markup\normal-text\bold\fontsize #0 "A"
  \meTrans c' "a"
  }
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to