Re: opus migration

2021-11-10 Thread Jean Abou Samra
Le 09/11/2021 à 19:41, Mark Stephen Mrotek a écrit : Hello, . A piano piece I am engraving has several sections. Each has different meters, keys, and number of voices. Each is coded in a separate score for ease of future editing. The entire piece is structured \header { title =

Re: How to increase the distance between the last note of a measure and the following bar line

2021-11-10 Thread Kieren MacMillan
Hi Jean, > The page in the Internals Reference doesn't > list all the properties that the grob would > support, only those for which it has a specific > default. You have to explore the interfaces to > find other interesting properties that you can > tweak. In this case, click "Item" ("This

Re: Frescobaldi fails with Fedora 35 / Python 3.10

2021-11-10 Thread Valentin Petzel
Hello Martin, As far as I have read this is solved by this patch: https://github.com/frescobaldi/frescobaldi/pull/1401/files which is simply adding int(...) twice. As python is an interpreted language you can apply this patch to an existing Frescobaldi installation. So you simply have to open

Lyrics above staff height inconsistent

2021-11-10 Thread Adam Good
Dear List, Here's a question I'm sure has been asked and answered often. I much prefer lyrics below the staff but if I had to, in the example below, what is causing the lyrics on the 2nd and 3rd stafflines to be higher than staffline 1? Playing with: \override

Re: How to increase the distance between the last note of a measure and the following bar line

2021-11-10 Thread Paolo Prete
Thanks. However, when looking for a property or function that might fit what I need, I always check for inherited stuff. In this case, unfortunately, the search is a bit cumbersome and tricky and it's not the first time, especially when the properties are so many and I have to write the code

Re: Frescobaldi fails with Fedora 35 / Python 3.10

2021-11-10 Thread Federico Bruni
Il giorno mer 10 nov 2021 alle 16:14:19 +0100, Valentin Petzel ha scritto: As far as I have read this is solved by this patch: https://github.com/frescobaldi/frescobaldi/pull/1401/files which is simply adding int(...) twice. As python is an interpreted language you can apply this patch to an

Re: Frescobaldi fails with Fedora 35 / Python 3.10

2021-11-10 Thread Valentin Petzel
Hello Frederico, technically you're always running frescobaldi from source. But well. I agree that usually it is not a good idea to patch dist files, but in this case I see no problems with this. The only real problem to patching dist files here is that any update to the package would revert

Re: Frescobaldi fails with Fedora 35 / Python 3.10

2021-11-10 Thread Federico Bruni
On Tue, Nov 9 2021 at 10:14:48 +0100, Martin Tarenskeen wrote: I have reported the problem upstream, I think the problem is/was already known. Just wanted to warn Fedora+Lilypond/Frescobaldi users who plan to upgrade from Fedora 34 to 35. If you very much need Frescobaldi it might be a good

Re: How to increase the distance between the last note of a measure and the following bar line

2021-11-10 Thread Carl Sorensen
You need to check all of the interfaces a barline supports. The barline page only shows the properties that are unique to barlines. The interfaces are shown on the bottom of the barlines page. Sent via the Samsung Galaxy S®6 active, an AT 4G LTE smartphone Get Outlook for

Re: Lyrics above staff height inconsistent

2021-11-10 Thread Aaron Hill
On 2021-11-10 7:46 am, Adam Good wrote: Dear List, Here's a question I'm sure has been asked and answered often. I much prefer lyrics below the staff but if I had to, in the example below, what is causing the lyrics on the 2nd and 3rd stafflines to be higher than staffline 1? Playing with:

Re: How to increase the distance between the last note of a measure and the following bar line

2021-11-10 Thread Jean Abou Samra
> Le 10/11/2021 14:01, Paolo Prete a écrit : > > > Thanks. > > BTW, in which object is this property documented? > It doesn't appear in > https://lilypond.org/doc/v2.23/Documentation/internals/barline > > ... where I searched before sending my message, > so I guess it's inherited from

Re: How to increase the distance between the last note of a measure and the following bar line

2021-11-10 Thread Jean Abou Samra
Le 10/11/2021 à 00:58, Paolo Prete a écrit : Hello, How can I increase the distance between the last note of a measure and the following bar line? Thanks! P extra-spacing-width is a convenient property for this as it does not require you to figure out what the cdr of X-extent would be

Re: How to increase the distance between the last note of a measure and the following bar line

2021-11-10 Thread Paolo Prete
Thanks. BTW, in which object is this property documented? It doesn't appear in https://lilypond.org/doc/v2.23/Documentation/internals/barline ... where I searched before sending my message, so I guess it's inherited from something else. Best, P On Wed, Nov 10, 2021 at 1:26 PM Jean Abou Samra

Re: Reduce the gap between time signature and the first note

2021-11-10 Thread Xavier Scheuer
On Wed, 10 Nov 2021 at 00:33, Paolo Prete wrote: > > Hello Xavier, > > I tried your tip but it seems to not produce any difference. See (tested on 2.19.48): > > (snip) > Hello, Well, you need to use it in combination with your space-alist = #'((first-note fixed-space . 0)) Cheers, Xavier --

Re: How to increase the distance between the last note of a measure and the following bar line

2021-11-10 Thread Jean Abou Samra
[Kieren] The page in the Internals Reference doesn't list all the properties that the grob would support, only those for which it has a specific default. You have to explore the interfaces to find other interesting properties that you can tweak. In this case, click "Item" ("This object is of

Re: Lyrics above staff height inconsistent

2021-11-10 Thread Adam Good
Aaron, Thank you for your informative and helpful reply! This, for the win: \with { \override VerticalAxisGroup.nonstaff-relatedstaff-spacing = #'((basic-distance . 1.0)) } Looks fantastic, problem solved. Adam On Wed, Nov 10, 2021 at 12:22 PM Aaron Hill wrote: > On

Re: How to increase the distance between the last note of a measure and the following bar line

2021-11-10 Thread Carl Sorensen
On 11/10/21, 2:37 PM, "lilypond-user on behalf of Jean Abou Samra" wrote: [Kieren] >> The page in the Internals Reference doesn't >> list all the properties that the grob would >> support, only those for which it has a specific >> default. You have to explore the

Re: How to increase the distance between the last note of a measure and the following bar line

2021-11-10 Thread Kieren MacMillan
Hi Jean, > Well… Do you have a version that doesn’t break in 2.22? > (I’m on MacOS, and still looking for a workable 2.23 app…) Never mind — I grabbed the 32-bit (which I should have a long time ago!). Works great. I love this! Is there a way to add a parameter which toggles the

Re: How to increase the distance between the last note of a measure and the following bar line

2021-11-10 Thread Paolo Prete
(En passant: I tried \info BarLine but could not see "extra-spacing-width". See the attached debug) But in general, I think it's not a good idea to dump these kind of doc infos as the output of a library, for several reasons. First of all because it has limitations in formatting and in linking

Re: How to increase the distance between the last note of a measure and the following bar line

2021-11-10 Thread Jean Abou Samra
Le 10/11/2021 à 22:49, Carl Sorensen a écrit : The code looks way cool. Unfortunately, I couldn't test it because I only have 2.22 installed, and it doesn't work with 2.22 (perhaps because of guile 1.8) I tested it with the official 2.23.4 binaries, which still use Guile 1.8. The failure is

Re: arranger, context voice

2021-11-10 Thread Gilles Thibault
I would like to understand what is the difference beetween \new Staff \new Voice \A and \new Staff \A This is not related to arranger.ly : This snippet works : %%% \version "2.22.0" music = { c'1 c' c' c' } skips = { s1*2 s1*2^"Hello" } \new Staff << \skips \music

Re: How to increase the distance between the last note of a measure and the following bar line

2021-11-10 Thread Kieren MacMillan
Hi Jean, > Sure. I had full confidence in you. =) > How about the attached? Well… Do you have a version that doesn’t break in 2.22? (I’m on MacOS, and still looking for a workable 2.23 app…) Thanks, Kieren. Kieren MacMillan, composer (he/him/his) ‣ website:

Re: How to increase the distance between the last note of a measure and the following bar line

2021-11-10 Thread Jean Abou Samra
Le 11/11/2021 à 01:48, Jean Abou Samra a écrit : Le 10/11/2021 à 22:49, Carl Sorensen a écrit : The code looks way cool.  Unfortunately, I couldn't test it because I only have 2.22 installed, and it doesn't work with 2.22 (perhaps because of guile 1.8) I tested it with the official 2.23.4