partition Batterie

Bonjour a tous.
Comme il n'est pmas possible d'écriçre une batterie avec la police "lilyjazz"
j'aimerai seulement ecrire la clé en" lilyjazz" . Quelqu'un a peut etre une idée ?
Par avance merci.
Bonne journée

Bonjour,

Grâce à @jeanas c'est possible en utilisant la version de développement.

\version "2.25.24"

\paper {
  % property-defaults.fonts.music = "lilyjazz"
}

\layout {
  \context {
    \Staff
    \override Clef.fonts.music = "lilyjazz" 
  }
}

\score {
  <<
    \new Staff {
      c'1
    }
  >>
}

Cordialement,
Xavier

Ou pour une batterie (DrumStaff) :

\version "2.25.24"

\paper {
  % property-defaults.fonts.music = "lilyjazz"
}

\layout {
  \context {
    \DrumStaff
    \override Clef.fonts.music = "lilyjazz" 
  }
}

\score {
  <<
    \new DrumStaff \drummode {
       hihat4 hh bassdrum bd
    }
  >>
}

Merci pour votre réponse.
voici le programme:

\version "2.24.4"
\include "lilyjazz.ily"
\paper
{
property-defaults.fonts.music = "lilyjazz"
}
nam =
\lyricmode
{
cymc cyms
cymr hh hhc
hho hhho
hhp
cb hc
bd sn ss tomh tommh tomml toml tomfh tomfl }
mus = \drummode {
cymc
cyms
cymr hh
hhc
hho hhho
hhp \break
cb hc
bd sn ss tomh tommh tomml toml tomfh tomfl s16
crashcymbal4
hihat8
halfopenhihat
hh hh hh
openhihat
}
\score
{
<<
\new DrumStaff
\with
{
\remove Bar_engraver
\remove Time_signature_engraver
\hide Stem
\override Stem.Y-extent = ##f
drumStyleTable = #agostini-drums-style
\override Clef.fonts.music = "lilyjazz"
\override LyricText.font-family = "lilyjazz"
\override Staff.NoteHead.style = #'diamond
\override Staff.NoteHead.style = #'cross
\override Staff.NoteHead.style = #'xcircle
}
\mus
\new Lyrics \nam

\layout {
\context {
\DrumStaff
\override Clef.fonts.music = "lilyjazz"
}

}
}

hélas toutes les tetes de notes ne sont pas reconnue.
bonne journée
Cordialement