Hello folks,
The setting:
\set Score.markFormatter = #format-mark-box-letters
has no effect here from version 2.23 on, see attached
Also, the usual :
\paper {
#(define fonts
(set-global-fonts
#:music "lilyjazz"
#:brace "lilyjazz"
#:roman "lilyjazz-text"
#:sans "lilyjazz-chord"
#:chords "lilyjazz-chord"
#:factor (/ staff-height pt 20)
))
has no effect on chord names:
Thanks for your help!
JM
--
%%%%%%%%%%%%%%
\version "2.23.6"
\paper {
#(define fonts
(set-global-fonts
#:music "lilyjazz"
#:brace "lilyjazz"
#:roman "lilyjazz-text"
#:sans "lilyjazz-chord"
#:factor (/ staff-height pt 20)
))
}
\markup { Some text }
myChordSequence = \chordmode {
\set chordChanges = ##t
%\set chordNameExceptions = #chExceptions
e2:m7 a:7 | e:m7 a:7 |
}
Part_POne_Staff_One_Voice_One = \absolute {
\language "nederlands"
\set Score.markFormatter = #format-mark-box-letters
% \set Score.markFormatter = #format-mark-box-alphabet % pour le "I"
\override Score.RehearsalMark.font-size = #+5
\textLengthOn
\key d \major
\mark \default
\clef "treble"
b'8 [ a' b' a' ~ ] a' b'4. | % 6
\barNumberCheck #2
r8 b'4. a'8 b'4. ^\markup {\musicglyph #"scripts.segno" } | % 7
\barNumberCheck #3
| % 7
}
\score {
<<
\new ChordNames \myChordSequence
\new Staff = "Part_POne_Staff_One"
\with {
}
<<
\context Voice = "Part_POne_Staff_One_Voice_One" <<
\Part_POne_Staff_One_Voice_One
>>
>>
>>
}
%%%%%%%%%%