Hi,
Is it possible to assign the formatting part of a markup to a variable without
the text. I would like to be able to change the text formatting in a single
location and thus affect all my textMarks. The following code snippet shows you
the result I want.
% <
\version "2.24.4"
varCchord = \chordmode { \textMark \markup \italic \fontsize #-1 \with-color
#blue "x 3 2 0 1 0" }
myChords = \chordmode {
\varCchord c
}
\score {
\new ChordNames \myChords
}
% >
I wish I could do something like:
% <
\version "2.24.4"
varFormat = \markup \italic \fontsize #-1 \with-color #blue
myChords = \chords {
\varFormat \textMark "x32010" c
}
\score {
\new ChordNames \myChords
}
% >
Thanks for your help.
Eric