Re: Padding between last system and footer

2017-01-18 Thread tisimst
On Wed, Jan 18, 2017 at 11:32 AM, Risto Vääräniemi-2 [via Lilypond] <
ml-node+s1069038n199322...@n5.nabble.com> wrote:

>
> On 18 January 2017 at 19:47, tisimst <[hidden email]
> <http:///user/SendEmail.jtp?type=node=199322=0>> wrote:
>
>> Hey, Risto!
>>
>> On Wed, Jan 18, 2017 at 10:33 AM, Risto Vääräniemi-2 [via Lilypond] <[hidden
>> email] <http:///user/SendEmail.jtp?type=node=199319=0>> wrote:
>>
>>> Hi,
>>>
>>> Is there a way to add some padding between the last system of the page
>>> and the footer? I have the copyright in the end of the 1st page. There
>>> doesn't seem to be a suitable spacing option in the \paper variables. There
>>> used to be a "foot-separator" in 2.11 but since then the spacing has
>>> changed a lot.
>>>
>>> I can (usually) adjust the spacing with system-system-spacing to leave
>>> some space but then the following pages might be cramped. I also must set
>>> ragged-bottom to #f to do that—not always desirable.
>>>
>>> Adding a blank line to the footer is not really an option because
>>> sometimes the score is PD and there's no copyright. Then, I'd like to use
>>> all the space that's available.
>>>
>>> Any ideas?
>>>
>>
>> Maybe the attached diagram helps? These vertical spacing properties are
>> all described in NR 4.1.4.
>>
>>
> Thanks Abraham. An excellent diagram (worth 1 words). I understood
> that the last-bottom-spacing referred to last page bottom spacing. I
> probably have some problems between reading and understanding something. :)
>
> @Kieren:
> What if I have e.g. a 4 page score? Surely, the ragged-last-bottom only
> affects the page 4, not the problematic pages 2–3?
>

'ragged-bottom affects all but the last page and 'ragged-last-bottom
affects only the last page. One take-away is that single page scores aren't
affected by 'ragged-bottom because the one and only page _is_ the last one.

Best,
Abraham




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Padding-between-last-system-and-footer-tp199318p199324.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Padding between last system and footer

2017-01-18 Thread Kieren MacMillan
Hi Risto,
(p.s. that's my middle name as I was baptized!)

> What if I have e.g. a 4 page score? Surely, the ragged-last-bottom only 
> affects the page 4, not the problematic pages 2–3?

Sorry. When you said “last system”, I thought you meant of the whole score.

> Adding a blank line to the footer is not really an option because sometimes 
> the score is PD and there's no copyright. Then, I'd like to use all the space 
> that's available.

Then make it conditional (using a function), or add space to the copyright 
manually:

%%  SNIPPET BEGINS
\version "2.19.54"
\language "english"

\header {
  tagline = ##f
}

\paper {
  evenHeaderMarkup = \markup \null
  ragged-bottom = ##f
}

\layout {
  \context {
\GrandStaff
\override StaffGrouper.staff-staff-spacing =
  #'((basic-distance . 1000) (stretchability . 1000))
  }
}

theScore =
\new GrandStaff <<
  \new Staff { c''1 }
  \new Staff { c''1 }
>>

\bookpart {
  \header {
copyright = \markup \column { \vspace #12 "Copyright ©2017 Kieren 
MacMillan" }
  }
  \score { \theScore }
}

\bookpart {
  \score { \theScore }
}
%%  SNIPPET ENDS

Hope that helps!
Kieren.


Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: i...@kierenmacmillan.info


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Padding between last system and footer

2017-01-18 Thread Risto Vääräniemi
On 18 January 2017 at 19:47, tisimst  wrote:

> Hey, Risto!
>
> On Wed, Jan 18, 2017 at 10:33 AM, Risto Vääräniemi-2 [via Lilypond] <[hidden
> email] > wrote:
>
>> Hi,
>>
>> Is there a way to add some padding between the last system of the page
>> and the footer? I have the copyright in the end of the 1st page. There
>> doesn't seem to be a suitable spacing option in the \paper variables. There
>> used to be a "foot-separator" in 2.11 but since then the spacing has
>> changed a lot.
>>
>> I can (usually) adjust the spacing with system-system-spacing to leave
>> some space but then the following pages might be cramped. I also must set
>> ragged-bottom to #f to do that—not always desirable.
>>
>> Adding a blank line to the footer is not really an option because
>> sometimes the score is PD and there's no copyright. Then, I'd like to use
>> all the space that's available.
>>
>> Any ideas?
>>
>
> Maybe the attached diagram helps? These vertical spacing properties are
> all described in NR 4.1.4.
>
>
Thanks Abraham. An excellent diagram (worth 1 words). I understood that
the last-bottom-spacing referred to last page bottom spacing. I probably
have some problems between reading and understanding something. :)

@Kieren:
What if I have e.g. a 4 page score? Surely, the ragged-last-bottom only
affects the page 4, not the problematic pages 2–3?

BR,
Risto
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Padding between last system and footer

2017-01-18 Thread Kieren MacMillan
Hi Risto,

> I also must set ragged-bottom to #f to do that—not always desirable.

What about adjusting ragged-last-bottom?

Hope that helps,
Kieren.


Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: i...@kierenmacmillan.info


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Padding between last system and footer

2017-01-18 Thread tisimst
Hey, Risto!

On Wed, Jan 18, 2017 at 10:33 AM, Risto Vääräniemi-2 [via Lilypond] <
ml-node+s1069038n199318...@n5.nabble.com> wrote:

> Hi,
>
> Is there a way to add some padding between the last system of the page and
> the footer? I have the copyright in the end of the 1st page. There doesn't
> seem to be a suitable spacing option in the \paper variables. There used to
> be a "foot-separator" in 2.11 but since then the spacing has changed a lot.
>
> I can (usually) adjust the spacing with system-system-spacing to leave
> some space but then the following pages might be cramped. I also must set
> ragged-bottom to #f to do that—not always desirable.
>
> Adding a blank line to the footer is not really an option because
> sometimes the score is PD and there's no copyright. Then, I'd like to use
> all the space that's available.
>
> Any ideas?
>

Maybe the attached diagram helps? These vertical spacing properties are all
described in NR 4.1.4.

HTH,
Abraham


vertical-spacing-paper-variables.pdf (88K) 
<http://lilypond.1069038.n5.nabble.com/attachment/199319/0/vertical-spacing-paper-variables.pdf>




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Padding-between-last-system-and-footer-tp199318p199319.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Padding between last system and footer

2017-01-18 Thread Risto Vääräniemi
Hi,

Is there a way to add some padding between the last system of the page and
the footer? I have the copyright in the end of the 1st page. There doesn't
seem to be a suitable spacing option in the \paper variables. There used to
be a "foot-separator" in 2.11 but since then the spacing has changed a lot.

I can (usually) adjust the spacing with system-system-spacing to leave some
space but then the following pages might be cramped. I also must set
ragged-bottom to #f to do that—not always desirable.

Adding a blank line to the footer is not really an option because sometimes
the score is PD and there's no copyright. Then, I'd like to use all the
space that's available.

Any ideas?

BR,
Risto
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user