hello, the list!

i have constructed the following:

%%% SNIP %%%
#(define-markup-command
  (nbTempo layout props expression beat tempo)
  (markup? string? markup?)
  (interpret-markup layout props
    #{
      \markup {
        \override #'(baseline-skip . 2)
        \column {
          \concat { \teeny { \raise #0.5 { \note #beat #UP } } \normal-text
{ " = " #tempo } }
          \normal-text #expression
        }
      }
    #}
    )
  )

\relative c' {
  \tempo \markup \nbTempo "a tempo" #"4" "90"
  c1 c1
}
%%% SNAP %%%

however, I would like to replace the convoluted call "\tempo \markup
\nbTempo" with just "\nbTempo".

How would I go about this? As an added bonus, the midi tempo could also be
set in this function.

Thanks, regards,
sb

-- 
Do not meddle in the affairs of trombonists, for they are subtle and quick
to anger.
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to