Re: Changes in notation font in 2.25

2024-07-16 Thread Werner LEMBERG
>> Note, however, that a lot of Emmentaler glyphs have been renamed >> since the original release of the cadence fonts, and these glyphs >> will certainly fail because LilyPond won't be able to find them.  >> In other words, your simple example works by chance only. > > Were that many glyphs rena

Re: get interval size of chord in music function

2024-07-16 Thread Kieren MacMillan
Hi Werner, Wouldn’t ly:pitch-diff save some of your work? Just a thought-experiment… Kieren > On Jul 16, 2024, at 2:32 AM, Werner LEMBERG wrote: > > > I want to find the interval size of a two-note chord in a music > function, and I came up with the following solution. > > ```tex > showInter

Re: get interval size of chord in music function

2024-07-16 Thread Werner LEMBERG
> Wouldn’t ly:pitch-diff save some of your work? In ``` (define (interval-string a b) (number->string (1+ (ly:pitch-steps (- b a) ``` The `(- b a)` actually uses `ly:pitch-diff` behind the scene :-) Werner

Re: Vertically align objects of same class?

2024-07-16 Thread Fennel
> So what you’d > need to do is to replace the skips by notes: > > brackets = \new Dynamics { > \override VerticalAxisGroup.staff-affinity = #DOWN > c4 c\startGroup c c\stopGroup | c\startGroup c c\stopGroup c > } > > Then this will still not work, as the Dynamics context does not create any > Not