tagged case in lyricmode

This commit is contained in:
Christoph Wagner 2024-12-04 20:37:44 +01:00
parent c4f3a3c196
commit a558a0b02f

View File

@ -174,4 +174,13 @@ multiVerseSkips =
alt =
#(define-music-function (parser location a b) (ly:music? ly:music?)
#{ \tag #'firstVerse { #a } \tag #'multiVerse { #b } #})
#{ \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) } }
}
#})