Re: vertical spacing per score

2024-05-18 Thread Jean Abou Samra



> Le 19 mai 2024 à 02:53, Walt North  a écrit :
> 
> David, thanks, this did indeed accomplish my goal - so I'm happy.

Well, \bookpart will work *if* you are happy with having a page break between 
the two scores.





Re: vertical spacing per score

2024-05-18 Thread Jean Abou Samra



> Le 19 mai 2024 à 01:56, David Wright  a écrit :
> 
> Perhaps
> 
> https://lists.gnu.org/archive/html/lilypond-user/2024-04/msg00247.html


Indeed, but there was a more technical one, with Lukas I think.





Re: vertical spacing per score

2024-05-18 Thread Walt North
David, thanks, this did indeed accomplish my goal - so I'm happy.  It 
sounds like my original approach was the right idea but apparently this 
is a known issue.


On 5/18/2024 4:56 PM, David Wright wrote:

On Sun 19 May 2024 at 01:24:44 (+0200), Jean Abou Samra wrote:

Hi.  I have a case where I want to have different vertical spacing between two
different scores.  I can get system-system spacing to change for both scores
using a \paper variable. But if I'm understanding the documentation correctly
I should be able to use the same variable in a distinct layout block in each
of the two scores.  If tried several different coding lines based on things
I've found on google but have not found the correct coding yet.

Sorry, this isn't supported, it's a known issue
(https://gitlab.com/lilypond/lilypond/-/issues/1885 ; there are
no comments there, but IIRC there was a more recent discussion).

Perhaps

https://lists.gnu.org/archive/html/lilypond-user/2024-04/msg00247.html

Cheers,
David.




Re: vertical spacing per score

2024-05-18 Thread David Wright
On Sun 19 May 2024 at 01:24:44 (+0200), Jean Abou Samra wrote:
> > Hi.  I have a case where I want to have different vertical spacing between 
> > two
> > different scores.  I can get system-system spacing to change for both scores
> > using a \paper variable. But if I'm understanding the documentation 
> > correctly
> > I should be able to use the same variable in a distinct layout block in each
> > of the two scores.  If tried several different coding lines based on things
> > I've found on google but have not found the correct coding yet.
> 
> Sorry, this isn't supported, it's a known issue
> (https://gitlab.com/lilypond/lilypond/-/issues/1885 ; there are
> no comments there, but IIRC there was a more recent discussion).

Perhaps

https://lists.gnu.org/archive/html/lilypond-user/2024-04/msg00247.html

Cheers,
David.



Re: vertical spacing per score

2024-05-18 Thread Jean Abou Samra
> Hi.  I have a case where I want to have different vertical spacing between two
> different scores.  I can get system-system spacing to change for both scores
> using a \paper variable. But if I'm understanding the documentation correctly
> I should be able to use the same variable in a distinct layout block in each
> of the two scores.  If tried several different coding lines based on things
> I've found on google but have not found the correct coding yet.

Sorry, this isn't supported, it's a known issue
(https://gitlab.com/lilypond/lilypond/-/issues/1885 ; there are
no comments there, but IIRC there was a more recent discussion).





signature.asc
Description: This is a digitally signed message part


vertical spacing per score

2024-05-18 Thread Walt North
Hi.  I have a case where I want to have different vertical spacing 
between two different scores.  I can get system-system spacing to change 
for both scores using a \paper variable. But if I'm understanding the 
documentation correctly I should be able to use the same variable in a 
distinct layout block in each of the two scores.  If tried several 
different coding lines based on things I've found on google but have not 
found the correct coding yet. Nothing seems to be affected.  Here are 
things I've tried so far.


Walt North

_\version "2.24.2"

\paper {
 % system-system-spacing = #'((basic-distance . 20) 
(minimum-distance . 20) (padding . 1))

}

  \score {
    \new Staff
    \with {
  %    \override system-system-spacing.padding = #15
  %    \override system-system-spacing.basic-distance = #20
  %    \override system-system-spacing.minimum-distance = #20
    } {
  \new Voice {
    \relative {
  c''4 a b c \break d1
    }
  }
    }
    \layout {
  %    system-system-spacing = #'((basic-distance . 20) 
(minimum-distance . 20) (padding . 1))

  \context {
    \StaffGroup
    \override StaffGrouper.staff-staff-spacing.basic-distance = #20
   % \override StaffGrouper.system-system-spacing.basic-distance = #20
  }
  \context {
    \Staff
 %   \override StaffGrouper.staff-staff-spacing.basic-distance = #20
    \override Staff.system-system-spacing.basic-distance = #20
    \override Staff.system-system-spacing.minimum-distance = #20
  }
  %    system-system-spacing = #'((basic-distance . 20) 
(minimum-distance . 20) (padding . 1))}

    }
  }_