diff --git a/basic_format_and_style_settings.ly b/basic_format_and_style_settings.ly index ccc6169..1036d5b 100644 --- a/basic_format_and_style_settings.ly +++ b/basic_format_and_style_settings.ly @@ -174,4 +174,13 @@ multiVerseSkips = alt = #(define-music-function (parser location a b) (ly:music? ly:music?) - #{ \tag #'firstVerse { #a } \tag #'multiVerse { #b } #}) \ No newline at end of file + #{ \tag #'firstVerse { #a } \tag #'multiVerse { #b } #}) + +updown = +#(define-music-function (parser location word) (string?) +#{ + \lyricmode { + \tag #'up { \markup { #(string-capitalize word) } } + \tag #'down { \markup { #(string-downcase word) } } + } +#}) \ No newline at end of file