Re: Harp Pedal Spanners

2023-06-07 Thread Alexandre Loomis
Your code is much more readable, but I'm not sure I understand the difference between first and second take? I just noticed, where I have -3 it is a typo, it should be positive 3 Alex Loomis On Wed, Jun 7, 2023 at 9:24 AM David Kastrup wrote: > Alexandre Loomis writes: > > >

Re: Harp Pedal Spanners

2023-06-07 Thread Alexandre Loomis
Thanks, that was very helpful! Adding \tweak padding 1 to the original function and defining a continue function by nextPed = #(define-music-function (end-text) (markup?) #{ \tweak bound-details.left.padding -3 \startPed "" #end-text #}) makes many cases work or almost work by defau

Harp Pedal Spanners

2023-06-06 Thread Alexandre Loomis
Hi all, I'm trying to notate harp pedals. This should looks something like [image: mwe1.cropped.png] I currently have code where it's straightforward to get pretty close, like this [image: mwe2.cropped.png] However, making it look like the first image involves a ton of time starting the new spanne

Re: Othering??

2023-05-10 Thread Alexandre Loomis
I'd translate it as aliénation or another antonym of assimilation. On Wed, May 10, 2023, 5:45 AM Vincent Gay wrote: > Le 10/05/2023 à 14:26, Andrew Bernard a écrit : > > a word that does not really exist in English > > DeepL translate Othering in French by altérisation, which is not really > Fre

Re: Anybody else playing with GPT4 and Lilypond?

2023-03-29 Thread Alexandre Loomis
> given some of the other impressive things it can do I think that's been exaggerated. It's very good at generating plausible-sounding text responses to prompts, everything else looks cherry-picked. On Wed, Mar 29, 2023 at 3:54 PM Nate wrote: > Hah yes. It once said \begn{music} and i said "are

Re: autoChange creating extra staff

2023-03-17 Thread Alexandre Loomis
ote: > Le vendredi 17 mars 2023 à 11:35 -0700, Alexandre Loomis a écrit : > > Hi, I'm running into an issue using \autoChange. I'd like CrossStaff to > share the lower staff (and upper with another voice, but that doesn't seem > to cause any issues), but it's creating

autoChange creating extra staff

2023-03-17 Thread Alexandre Loomis
Hi, I'm running into an issue using \autoChange. I'd like CrossStaff to share the lower staff (and upper with another voice, but that doesn't seem to cause any issues), but it's creating its own. \version "2.24.0" CrossStaff = \autoChange f { \relative c' { c2 c, } } VoiceTwo = \relative

Re: Not sure how to construct an example--need to mark repeat signs underneath, without wrapping to next line

2023-03-07 Thread Alexandre Loomis
You could also use \jump, for example \version "2.24.1" \repeat volta 2 { c'1 1 1 1 \jump "4×" } On Tue, Mar 7, 2023 at 9:46 AM Jean Abou Samra wrote: > Le mardi 07 mars 2023 à 10:29 -0600, Matthew Probst a écrit : > > I'm not quite sure how to construct an example--I'm working on my scor

Re: Harp Pedal Spanner

2023-03-02 Thread Alexandre Loomis
That works perfectly, thanks! Alex On Thu, Mar 2, 2023 at 1:34 PM Jean Abou Samra wrote: > Le jeudi 02 mars 2023 à 12:11 -0700, Alexandre Loomis a écrit : > > Hi, > > I'm having trouble defining a harp pedal spanner. I'd like to be able to > write code like > &

Harp Pedal Spanner

2023-03-02 Thread Alexandre Loomis
Hi, I'm having trouble defining a harp pedal spanner. I'd like to be able to write code like \relative c' { f4 _\startPedal "F♮" g fes \endPedal "♭" } and get as output the notes, with F♮ below the f natural, ♭ below the f flat, and a line connecting the markups. So far the closest I've been abl