Re: Printing note names as moveable do solfege

2025-01-29 Thread Drew Neil
Thank you! On Thu, 30 Jan 2025 at 07:29, Lukas-Fabian Moser wrote: > > One small thing: when I compile the .ly file, I'm seeing this in the log: > > > > ((# . "do") > > (# . "re") > > (# . "mi") > > ...more... > > (# . "tey")) > > > > It gets noisy, especially with longer pieces. How can I r

Re: Printing note names as moveable do solfege

2025-01-29 Thread Lukas-Fabian Moser
One small thing: when I compile the .ly file, I'm seeing this in the log: ((# . "do")  (# . "re")  (# . "mi")  ...more...  (# . "tey")) It gets noisy, especially with longer pieces. How can I remove this? (I studied your code for any display or write or format commands, but I found none) Whoop

Re: Printing note names as moveable do solfege

2025-01-29 Thread Drew Neil
One small thing: when I compile the .ly file, I'm seeing this in the log: ((# . "do") (# . "re") (# . "mi") ...more... (# . "tey")) It gets noisy, especially with longer pieces. How can I remove this? (I studied your code for any display or write or format commands, but I found none) Cheers,

Re: Printing note names as moveable do solfege

2025-01-29 Thread Drew Neil
That's amazing Lukas! :chefkiss: Thanks so much. Drew On Wed, 29 Jan 2025 at 15:47, Lukas-Fabian Moser wrote: > Hi Drew, > > ... which is great, since it means that the noteNameFunction gets called >> with the current context (as opposed to only a pitch), which means we can >> read the tonic fro

Re: Printing note names as moveable do solfege

2025-01-29 Thread Lukas-Fabian Moser
Hi Drew, ... which is great, since it means that the noteNameFunction gets called with the current context (as opposed to only a pitch), which means we can read the tonic from the context and do not need to write our own engraver (whose job it would be to read the context's t

Re: Printing note names as moveable do solfege

2025-01-24 Thread Drew Neil
Thanks Lukas, When I was researching this, I found an old post of yours where you showed how to put solfege syllables inside the note-heads: https://lists.gnu.org/archive/html/lilypond-user/2022-10/msg00060.html That's really neat! What I'm hoping to do is to print the solfege syllables underneat

Re: Printing note names as moveable do solfege

2025-01-24 Thread Lukas-Fabian Moser
Hi Andrew, Am 23.01.25 um 23:41 schrieb Drew Neil: Is it possible to have note names printed using moveable do solfege? I've been experimenting with the noteNameFunction(). I can get the pitch-notename and pitch-alteration, which is a good start. But I think I need to know the key and tonality

Printing note names as moveable do solfege

2025-01-23 Thread Drew Neil
Is it possible to have note names printed using moveable do solfege? I've been experimenting with the noteNameFunction(). I can get the pitch-notename and pitch-alteration, which is a good start. But I think I need to know the key and tonality to be able to decide which pitch is 'do'. Can I get t