[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Spécification fontname dans fonction Scheme
From: |
Valentin Villenave |
Subject: |
Re: Spécification fontname dans fonction Scheme |
Date: |
Sat, 4 Jan 2020 22:39:05 +0000 |
On 1/4/20, Remy CLAVERIE <address@hidden> wrote:
> Malheuresement, ta proposition de modification ne fonctionne pas...
Ça marche chez moi :
%%%%
#(define ((double-time-signature glyph a b) grob)
(grob-interpret-markup grob
(markup #:override '(baseline-skip . 2.0) #:number
(#:line ((markup (#:fontsize 0.2 #:musicglyph glyph))
#:override '(font-name . "Bitstream Vera
Sans,sans-serif, Oblique Bold")
(#:fontsize -1 #:column (a b))
)))))
\new Staff \with {
\override TimeSignature.stencil =
#(double-time-signature "timesig.mensural22" "3" "2")
} {
a'2 c' d' e'1
}
%%%
V.