Re: remove key change at end of line

2024-03-25 Thread bobr...@centrum.is
That did the trick! Thank you, Xavier. > From: "Xavier Scheuer" > To: "bobroff" > Cc: "Lillypond Users Mailing List" > Sent: Monday, March 25, 2024 9:37:38 PM > Subject: Re: remove key change at end of line > On Mon, 25 Mar 2024 at 22:19, [ mailto:bobr...@centrum.is | > bobr...@centrum.is ]

Re: remove key change at end of line

2024-03-25 Thread Xavier Scheuer
On Mon, 25 Mar 2024 at 22:19, bobr...@centrum.is wrote: > > I want to remove a key change from the ends of lines/systems. I am *not* referring to just key cancellation, which I do also want. I mean, at the end of a line the new key should not appear before the new line. I haven't worked it

Re: remove key change at end of line

2024-03-25 Thread Aaron Hill
On 2024-03-25 2:18 pm, bobr...@centrum.is wrote: I want to remove a key change from the ends of lines/systems. I am *not* referring to just key cancellation, which I do also want. I mean, at the end of a line the new key should not appear before the new line. I haven't worked it out.

remove key change at end of line

2024-03-25 Thread bobr...@centrum.is
I want to remove a key change from the ends of lines/systems. I am *not* referring to just key cancellation, which I do also want. I mean, at the end of a line the new key should not appear before the new line. I haven't worked it out. -David

Re: Can't compile Lilypond files

2024-03-25 Thread Valentin Petzel
Hello David, great that things worked out. Instead of putting a script at /usr/bin/lilypond which calls ~/bin/lilypond you could also create a symlink. Also modern Linux setups should have ~/.local/bin in PATH by default, so if the reason is only to be able to call `lilypond` without path

Re: LilyPond 2.25.14

2024-03-25 Thread Mathieu Demange
Hello, Here are my results for MSDM.ly on a M2 Max MacBook Pro: real 12.11 user 11.02 sys 1.06 Thanks a lot! Mathieu

Re: nested \set ?

2024-03-25 Thread Valentin Petzel
Hello Werner, properties handle this by having internally not a single value, but a list of values, and temporary overriding simply means adding to that list. Context properties do currently not allow for this mechanic, but we could simulate it ourselves: #(set-object-property! 'details

Re: nested \set ?

2024-03-25 Thread Werner LEMBERG
>> LilyPond provides `\temporary` and `\revert` to set a grob property >> temporarily, and afterwards the value of the grob property is the >> same as before. >> >> Is there a similar possiblity for `\set` (or something usable in >> Scheme)?  I guess not, but I couldn't find this documented >>

Re: nested \set ?

2024-03-25 Thread Aaron Hill
On 2024-03-25 4:13 am, Jean Abou Samra wrote: No, this doesn't exist OOTB. It could be implemented with a Scheme engraver, but that would probably be overkill, unless for some reason it's really important for what you're trying to do? Here's a simple non-engraver way to potentially get close:

Re: nested \set ?

2024-03-25 Thread Werner LEMBERG
> > Yes, thanks, but this is not what I'm looking after: At the start > > of my function (created with `define-music-function`), > > `\autoBeamOff` gets called (i.e., the `autoBeaming` context > > variable is set to `##t`), and after the function returns the > > previous value of `autoBeaming`

Re: nested \set ?

2024-03-25 Thread Jean Abou Samra
> My Lilypond knowledge is small but have you tried the "\unset" command ?? \unset will simply remove the value. Werner is looking for something that resets the previous value. signature.asc Description: This is a digitally signed message part

Re: Snippet: Adding indicators to staves which split after a break

2024-03-25 Thread Kevin Pye
>> The easy question. The fourth line of the snippet reads: >>(PI_OVER_180 (/ (atan2 1 1) 34)) >> Surely that “34” should be “45”. > > Did you try changing it? ;) Yes. It breaks things slightly. I need to dive further down the rabbit-hole to work out why. >> The more difficult question.

Re: nested \set ?

2024-03-25 Thread Jean Abou Samra
Le lundi 25 mars 2024 à 07:31 +, Werner LEMBERG a écrit : > LilyPond provides `\temporary` and `\revert` to set a grob property > temporarily, and afterwards the value of the grob property is the same > as before. > > Is there a similar possiblity for `\set` (or something usable in > Scheme)? 

Re: nested \set ?

2024-03-25 Thread Sebastien Richard
Hello, My Lilypond knowledge is small but have you tried the "\unset" command ?? BR, --- Sébastien RICHARD From: lilypond-user-bounces+richardsgjm=hotmail@gnu.org on behalf of Werner LEMBERG Sent: Monday, March 25, 2024 11:12 To:

Re: nested \set ?

2024-03-25 Thread Werner LEMBERG
>> LilyPond provides `\temporary` and `\revert` to set a grob property >> temporarily, and afterwards the value of the grob property is the >> same as before. >> >> Is there a similar possiblity for `\set` (or something usable in >> Scheme)? I guess not, but I couldn't find this documented >>

Re: Snippet: Adding indicators to staves which split after a break

2024-03-25 Thread Kieren MacMillan
Hi Kevin, > I have two questions about this snippet: You forgot to include the snippet or a link! :) But I assume you mean https://lilypond.org/doc/v2.25/Documentation/snippets/vocal-music_003a-adding-indicators-to-staves-which-get-split-after-a-break > The easy question. The fourth line of

Re: nested \set ?

2024-03-25 Thread Kieren MacMillan
Hi Werner, > LilyPond provides `\temporary` and `\revert` to set a grob property > temporarily, and afterwards the value of the grob property is the same > as before. > > Is there a similar possiblity for `\set` (or something usable in > Scheme)? I guess not, but I couldn't find this documented

Snippet: Adding indicators to staves which split after a break

2024-03-25 Thread Kevin Pye
I have two questions about this snippet: The easy question. The fourth line of the snippet reads: (PI_OVER_180 (/ (atan2 1 1) 34)) Surely that “34” should be “45”. The more difficult question. This snippet adds two arrows to the bar line at the end of the staff. I have a case where there is

Re: Can't compile Lilypond files

2024-03-25 Thread Raphael Mankin
On 24/03/2024 21:26, David Sumbler wrote: On Sun, 2024-03-24 at 21:55 +0100, Lukas-Fabian Moser wrote: [snip] What I don't understand is why or how it always used to work, but I suppose there's no point in worrying about that. I have lost count of the number of projects over the past

nested \set ?

2024-03-25 Thread Werner LEMBERG
LilyPond provides `\temporary` and `\revert` to set a grob property temporarily, and afterwards the value of the grob property is the same as before. Is there a similar possiblity for `\set` (or something usable in Scheme)? I guess not, but I couldn't find this documented somewhere...