Re: Problem with `\acciaccatura` and `\cueDuring`

2023-02-16 Thread Jean Abou Samra
Le jeudi 16 février 2023 à 06:30 +, Werner LEMBERG a écrit : > ``` > > >> As can be seen, the acciaccatura neither has a slash nor a slur if > >> quoted.  [...] > > > > This looks like a real bug, please file an issue. > > [https://gitlab.com/lilypond/lilypond/-/issues/6531](https://gitlab.c

Re: Problem with `\acciaccatura` and `\cueDuring`

2023-02-16 Thread Werner LEMBERG
>> [...] after doing a grep over the git repository, which leads me to >> `property-iterator.cc`, it's not really clear to me what's going >> on... > > Well, you can find it in `define-event-classes.scm`. It's the event > class for events created by `\override`s. Ah, yes, I missed that while do

LilyPond has been updated on BytesIn

2023-02-16 Thread BytesIn
We've sent this email because we have updated LilyPond and this was the contact email supplied for the application. Your application update status LilyPond has been updated on BytesIn.com to the 2.24.1 version. You can check o

Re: LilyPond has been updated on BytesIn

2023-02-16 Thread Jean Abou Samra
Le jeudi 16 février 2023 à 08:53 +, BytesIn a écrit : > We've sent this email because we have updated > LilyPond and this was the contact email supplied for the application. > > **Your application update status** > LilyPo

Pedal reminder

2023-02-16 Thread Leo Correia de Verdier
Dear list! Is there any way to make lilypond automagically place a reminder of a held pedal note at the beginning of each system it still sounds, looking somewhat like the second supplied example, but without having to do it by hand? \score { \new StaffGr

Re: Pedal reminder

2023-02-16 Thread Kieren MacMillan
Hi Leo! > Is there any way to make lilypond automagically place a reminder of a held > pedal note at the beginning of each system it still sounds, looking somewhat > like the second supplied example, but without having to do it by hand? This sounds like a job for… Scheme Engraver!! :) I’ve do

Re: vertical spacing of footnotes

2023-02-16 Thread Werner LEMBERG
I've further refined and simplified the footnote spacing example; it is now available in the LSR https://lsr.di.unimi.it/LSR/Item?id=1165 Werner

Programming error with change staff

2023-02-16 Thread Knute Snortum
I have run into a situation where LilyPond produces a programming error. It involves changing staff, voice one, accent fingering and avoid-slur. It's best to just look at the MWE: \version "2.25.1" staffUp = \change Staff = "upper" staffDown = \change Staff = "lower" rightHand = { \new Voice {

RE: Programming error with change staff

2023-02-16 Thread Mark Stephen Mrotek
Knute, Running your MWE under 2.22.2 it complies without a hitch. Mark From: lilypond-user-bounces+carsonmark=ca.rr@gnu.org [mailto:lilypond-user-bounces+carsonmark=ca.rr@gnu.org] On Behalf Of Knute Snortum Sent: Thursday, February 16, 2023 10:09 AM To: lilypond-user@gnu.org S

Double bar notation in middle of measure

2023-02-16 Thread Evan Driscoll
I'm trying to re-engrave part of a part that has an admittedly-weird double bar indication in the middle of a measure. You can see what I mean, with context, here: https://imgur.com/BnpooBh (measure 49, aka C). How can I get that in Lilypond? Obviously `\bar "||"` will give a failed barcheck. I tr

Custom dynamic text with spanner

2023-02-16 Thread Evan Driscoll
The manual describes ( http://lilypond.org/doc/v2.24/Documentation/notation/expressive-marks-attached-to-notes#new-dynamic-marks) how to create new dynamics with custom markup... ...but it doesn't say how to combine that with an indication like "cresc." that gets a spanner attached to it, and my s

Re: Custom dynamic text with spanner

2023-02-16 Thread Michael Werner
Hi Evan - Just above the section you linked to is a bit titled "Changing text and spanner styles for text dynamics" that seems to be what you're asking about. Short version: \set crescendoText = \markup { \italic { molto cresc } } \set crescendoSpanner = #'text should be either what you're wantin

Re: Custom dynamic text with spanner

2023-02-16 Thread Evan Driscoll
On Fri, Feb 17, 2023 at 12:17 AM Michael Werner wrote: > Short version: > \set crescendoText = \markup { \italic { molto cresc } } > \set crescendoSpanner = #'text > should be either what you're wanting or pretty close to it. > Oh, I see, thank you very much! I actually saw that and tried to tr

Re: Double bar notation in middle of measure

2023-02-16 Thread Jean-Julien Fleck
Hello Evan, Le ven. 17 févr. 2023 à 06:12, Evan Driscoll a écrit : > I'm trying to re-engrave part of a part that has an admittedly-weird > double bar indication in the middle of a measure. You can see what I mean, > with context, here: https://imgur.com/BnpooBh (measure 49, aka C). > > How can

Re: Custom dynamic text with spanner

2023-02-16 Thread Jean Abou Samra
Le vendredi 17 février 2023 à 00:31 -0600, Evan Driscoll a écrit : > > On Fri, Feb 17, 2023 at 12:17 AM Michael Werner > <[reznae...@gmail.com](mailto:reznae...@gmail.com)> wrote: > > > Short version:\set crescendoText = \markup { \italic { molto cresc } } > > \set crescendoSpanner = #'text >

Re: Double bar notation in middle of measure

2023-02-16 Thread Jean Abou Samra
Le vendredi 17 février 2023 à 07:31 +0100, Jean-Julien Fleck a écrit : > Have you tried ? > It seems to me that \bar doesn't perform any bar-check as to be able to break > a line inside a mesure, you just insert an invisible bar with \bar "" `\bar ""` is actually not necessary or recommended an

Re: Custom dynamic text with spanner

2023-02-16 Thread Evan Driscoll
On Fri, Feb 17, 2023 at 12:40 AM Jean Abou Samra wrote: > It works like this too: > > \version "2.24.0" > > { > \once \set crescendoText = "molto cresc." > c'1\cresc c' c'\! > } > > This one does *not* work for me. Perhaps it's a version difference. For example, hacklily.org with version cha

Re: Custom dynamic text with spanner

2023-02-16 Thread Jean Abou Samra
Le vendredi 17 février 2023 à 00:45 -0600, Evan Driscoll a écrit : > On Fri, Feb 17, 2023 at 12:40 AM Jean Abou Samra > <[j...@abou-samra.fr](mailto:j...@abou-samra.fr)> wrote:It works like this > too: ``` > \version "2.24.0" > > > > { > > \once \set crescendoText = "molto cresc." > > c'1\cr

Re: Double bar notation in middle of measure

2023-02-16 Thread Evan Driscoll
Huh, I (obviously) didn't realize that \bar didn't do bar checks; it didn't even occur to me that it might not, so I didn't try it. Thanks! Evan On Fri, Feb 17, 2023 at 12:42 AM Jean Abou Samra wrote: > Le vendredi 17 février 2023 à 07:31 +0100, Jean-Julien Fleck a écrit : > > Have you tried ?