support für römische Zahlen in den Strophen
This commit is contained in:
parent
e388559f23
commit
c4bfc17b89
@ -95,8 +95,16 @@ schwarzkopf =
|
|||||||
\override NoteHead.color = #grey
|
\override NoteHead.color = #grey
|
||||||
#})
|
#})
|
||||||
|
|
||||||
|
romanStanza =
|
||||||
|
#(define-music-function (parser location) ()
|
||||||
|
#{ \override StanzaNumber.style = #'roman #})
|
||||||
|
|
||||||
stanza =
|
stanza =
|
||||||
#(define-music-function (parser location stanzanumber) (number?)
|
#(define-music-function (parser location stanzanumber) (number?)
|
||||||
#{ \set stanza = #(ly:format stanzaFormat stanzanumber) #})
|
(make-apply-context
|
||||||
|
(lambda (context)
|
||||||
|
(let* ((stanzastyle (ly:assoc-get 'style (ly:context-grob-definition context 'StanzaNumber)))
|
||||||
|
(formattedStanzaNumber (format #f (if (eq? stanzastyle 'roman) romanStanzaFormat stanzaFormat) stanzanumber)))
|
||||||
|
(ly:context-set-property! context 'stanza formattedStanzaNumber)))))
|
||||||
|
|
||||||
ref = { \set stanza = \refString }
|
ref = { \set stanza = \refString }
|
||||||
|
@ -15,6 +15,7 @@ songTocColumns = 3
|
|||||||
globalSize = 15
|
globalSize = 15
|
||||||
lyricSize = 1.6
|
lyricSize = 1.6
|
||||||
stanzaFormat = "~a."
|
stanzaFormat = "~a."
|
||||||
|
romanStanzaFormat = "~@r."
|
||||||
refString = "Ref.:"
|
refString = "Ref.:"
|
||||||
% hübsche Wiederholungszeichen für den Liedtext
|
% hübsche Wiederholungszeichen für den Liedtext
|
||||||
repStart = "𝄆"
|
repStart = "𝄆"
|
||||||
|
Loading…
Reference in New Issue
Block a user