Re: Vertical spacing question

2015-06-22 Thread Simon Albrecht

Hello Ivan,

Am 22.06.2015 um 12:35 schrieb Ivan Arreghini:
Good day to all of you! I'd need a little help for a spacing problem 
with Lilypond.

Is it possible
(Virtually everything is _possible_ in LilyPond – only some things are 
more difficult than others :-) )

the setting the vertical spacing between systems
See 
http://lilypond.org/doc/v2.18/Documentation/notation/flexible-vertical-spacing-paper-variables.

and staves
See 
http://lilypond.org/doc/v2.18/Documentation/notation/flexible-vertical-spacing-within-systems.

for each individual page,
See 
http://lilypond.org/doc/v2.18/Documentation/notation/explicit-staff-and-system-positioning.

in a score?


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


Re: Vertical spacing question

2015-06-22 Thread Klaus Blum
Hi Ivan, 

what do you mean by spacing between systems and staves? 
Maybe there is a chance to work with 
\once \override

Joram Berger has created a great cheat sheet that might help you to find the
right place:
http://joramberger.de/files/LilypondSpacing.pdf

Cheers, 
Klaus





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Vertical-spacing-question-tp178079p178081.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: Vertical Spacing question

2009-04-24 Thread Mark Polesky

Mischa Falkenburg wrote:
systems-per-page
max-systems-per-page
min-systems-per-page
 
 
  ragged-last-bottom
 
 I've been searching through the documentation, and the index for 
 same...but I don't see any reference to this. Explain, please?

Mischa, 

Don't forget to use reply to all so that
your messages show up on the mailing list.

ragged-last-bottom is here:
http://lilypond.org/doc/v2.13/Documentation/user/lilypond/Page-formatting#Other-layout-variables

The documentation for the other 3 were only
added to the source files recently:

http://git.savannah.gnu.org/gitweb/?p=lilypond.git;a=commit;h=777290146739b3896eacd2b65d5d87b2826603e9

So they won't appear in the docs until 2.13.1
is released. Of the three, it looks like only
systems-per-page is available in 2.13.0.
So you can try this:

\paper {
  systems-per-page = #3
}

But you should also try this:

\paper {
  ragged-last-bottom = ##t
}

hope this helps
- Mark



  


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


Re: Vertical Spacing question

2009-04-24 Thread Mischa Falkenburg

Mark Polesky wrote:

Mischa Falkenburg wrote:
  

  systems-per-page
  max-systems-per-page
  min-systems-per-page
   


ragged-last-bottom

  
I've been searching through the documentation, and the index for 
same...but I don't see any reference to this. Explain, please?



Mischa, 


Don't forget to use reply to all so that
your messages show up on the mailing list.

ragged-last-bottom is here:
http://lilypond.org/doc/v2.13/Documentation/user/lilypond/Page-formatting#Other-layout-variables

The documentation for the other 3 were only
added to the source files recently:

http://git.savannah.gnu.org/gitweb/?p=lilypond.git;a=commit;h=777290146739b3896eacd2b65d5d87b2826603e9

So they won't appear in the docs until 2.13.1
is released. Of the three, it looks like only
systems-per-page is available in 2.13.0.
So you can try this:

\paper {
  systems-per-page = #3
}

But you should also try this:

\paper {
  ragged-last-bottom = ##t
}

hope this helps
- Mark



  



  

Mark, thanks for your help (ie. Reply to ALL)

My question would be:
WHERE do I plug in the

\paper {
 ragged-last-bottom = ##t
}

?

Here is a copy of my score...

\version 2.10.33

timeAndKey = { \time 4/4 \key g \major}

voiceA = \relative c'' { \timeAndKey

\repeat unfold 210 {g'4 fis d8 e b c d4 fis4 d4 b4 a8 b \times 2/3 {c d 
c}d8 g fis d c4 a2 g4}


}

voiceB = \relative c { \timeAndKey

\repeat unfold 420 { d'8 e fis4 g8 a c4 e4 c8 b a4 g8 fis }

}

voiceC = \relative c'' { \timeAndKey

\repeat unfold 280 { b4 a b e g a fis e~ e c c8 d r4 }

}

voiceD = \relative c'' { \timeAndKey

\repeat unfold 120 { r1 r1 g'4 fis d8 e b c e4 c8 b a4 g8 fis a8 b 
\times 2/3 {c d c} d8 g fis d e4 c8 b a4 g8 fis r1 }


}

voiceE = \relative c'' { \timeAndKey

\repeat unfold 168 { c2 b8 d c b a4 b g2~ g b8 d c b c4 fis \times 2/3 
{e8 d e} d4~ d a2 r4 }


}

voiceF = \relative c'' { \timeAndKey

\repeat unfold 105 { g'2 (e) (c) r2 e2 (c) (a) r2 fis'2 (d) (b) r2 d2 
(b) (g1) }


}

\score {

\new GrandStaff {

\new Staff \voiceA

\new Staff \voiceB

\new Staff \voiceC

\new Staff \voiceD

\new Staff \voiceE

\new Staff \voiceF



}

\layout { }

\midi { }

}

Your HELP will always be appreciated...

Mischa




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


Re: Vertical Spacing question

2009-04-24 Thread Jonathan Kulp

Mischa Falkenburg wrote:
  

Mark, thanks for your help (ie. Reply to ALL)

My question would be:
WHERE do I plug in the

\paper {
 ragged-last-bottom = ##t
}



I normally put the \paper block right after the \header block in my 
scores.  In the example you give below, just put it after your \version 
statement and it'll do what you want.


Jon


?

Here is a copy of my score...

\version 2.10.33

timeAndKey = { \time 4/4 \key g \major}

voiceA = \relative c'' { \timeAndKey

\repeat unfold 210 {g'4 fis d8 e b c d4 fis4 d4 b4 a8 b \times 2/3 {c d 
c}d8 g fis d c4 a2 g4}


}

voiceB = \relative c { \timeAndKey

\repeat unfold 420 { d'8 e fis4 g8 a c4 e4 c8 b a4 g8 fis }

}

voiceC = \relative c'' { \timeAndKey

\repeat unfold 280 { b4 a b e g a fis e~ e c c8 d r4 }

}

voiceD = \relative c'' { \timeAndKey

\repeat unfold 120 { r1 r1 g'4 fis d8 e b c e4 c8 b a4 g8 fis a8 b 
\times 2/3 {c d c} d8 g fis d e4 c8 b a4 g8 fis r1 }


}

voiceE = \relative c'' { \timeAndKey

\repeat unfold 168 { c2 b8 d c b a4 b g2~ g b8 d c b c4 fis \times 2/3 
{e8 d e} d4~ d a2 r4 }


}

voiceF = \relative c'' { \timeAndKey

\repeat unfold 105 { g'2 (e) (c) r2 e2 (c) (a) r2 fis'2 (d) (b) r2 d2 
(b) (g1) }


}

\score {

\new GrandStaff {

\new Staff \voiceA

\new Staff \voiceB

\new Staff \voiceC

\new Staff \voiceD

\new Staff \voiceE

\new Staff \voiceF

 

}

\layout { }

\midi { }

}

Your HELP will always be appreciated...

Mischa




--
Jonathan Kulp
http://www.jonathankulp.com


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


Re: Vertical Spacing question

2009-04-23 Thread Mark Polesky

Francisco Vila wrote:
 2009/4/22 Carl D. Sorensen :
 
  I think you want to set system-count.
 
 Maybe you could play with
 
   systems-per-page
   max-systems-per-page
   min-systems-per-page

ragged-last-bottom might do the trick too.

- Mark



  


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


Re: Vertical Spacing question

2009-04-22 Thread Carl D. Sorensen



On 4/22/09 9:13 AM, Mischa Falkenburg
because_producti...@myfairpoint.net wrote:

 Hello All,
 
 I'm using version 2.12.1, and my piece utilizes a GrandStaff with 6 Staffs.
 The .pdf file generated shows all the pages, except for the final page,
 with a big space between two GrandStaffs.
 
 I would like to modify the spacing so that three GS's would show on each
 page. Is this possible?
 

Perhaps, if there's enough space on the page.  Please review Section 4.6.2
of the Notation Reference.

I think you want to set system-count.

HTH,

Carl




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


Re: Vertical Spacing question

2009-04-22 Thread Francisco Vila
2009/4/22 Carl D. Sorensen c_soren...@byu.edu:

 I think you want to set system-count.

Maybe you could play with

  systems-per-page
  max-systems-per-page
  min-systems-per-page

as well. Not available until next release, though.

-- 
Francisco Vila. Badajoz (Spain)
www.paconet.org


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


Re: vertical spacing question

2008-12-04 Thread james


Am 03.12.2008 um 22:59 schrieb Neil Puttock:


2008/12/3 james [EMAIL PROTECTED]:

I'm sorry, \bookpart is new to me, and I don't find it when I  
search for it

in the one big page option. Where can I learn more about this?


It's hot off the press. :)

Here are some links from the 2.11.65 docs:

http://lilypond.org/doc/v2.11/Documentation/topdocs/NEWS

http://lilypond.org/doc/v2.11/Documentation/user/lilypond/Multiple- 
scores-in-a-book#index-_005cbookpart-1


http://lilypond.org/doc/v2.11/Documentation/user/lilypond/File- 
structure#File-structure


http://lilypond.org/doc/v2.11/Documentation/user/lilypond/Page- 
breaking#index-_005cbookpart-3


I'm having some difficulty. So far, in a score that compiles fine  
without \bookpart, I only get bus errors when I try to use \bookpart.  
I've tried having just one \score in the \bookpart, I've tried having  
all of them in \bookparts. The example from eluze works, so I'm sure  
bookpart works, but on my score that works without \bookpart,  
\bookpart doesn't work. So, is there something I can do to remedy  
this? I thought the score was fine, I don't get any errors when  
processing, but when it comes to using \bookpart, I get bus error and  
no file.


I'm using OSX 10.4 and lilypond 2.11.65 (release candidate)


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


Re: vertical spacing question

2008-12-04 Thread Nicolas Sceaux

Le 4 déc. 08 à 21:25, james a écrit :

I'm having some difficulty. So far, in a score that compiles fine  
without \bookpart, I only get bus errors when I try to use  
\bookpart. I've tried having just one \score in the \bookpart, I've  
tried having all of them in \bookparts. The example from eluze  
works, so I'm sure bookpart works, but on my score that works  
without \bookpart, \bookpart doesn't work. So, is there something I  
can do to remedy this? I thought the score was fine, I don't get any  
errors when processing, but when it comes to using \bookpart, I get  
bus error and no file.


Would you mind sending me your example file privately, so that I
could investigate on the bus error?

Nicolas



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


Re: vertical spacing question

2008-12-03 Thread Neil Puttock
Hi James,

2008/12/3 james [EMAIL PROTECTED]:
 I have a question about vertical spacing between systems of a single score
 inside a book. how do I access page0limit-inter-system-space inside a
 \layout block? I want those settings only for a single score.

I think you'll have to use \bookpart, since
page-limit-inter-system-space won't have any effect inside \layout.

Regards,
Neil


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


Re: vertical spacing question

2008-12-03 Thread james


Am 03.12.2008 um 22:41 schrieb Neil Puttock:


Hi James,

2008/12/3 james [EMAIL PROTECTED]:
I have a question about vertical spacing between systems of a  
single score

inside a book. how do I access page0limit-inter-system-space inside a
\layout block? I want those settings only for a single score.


I think you'll have to use \bookpart, since
page-limit-inter-system-space won't have any effect inside \layout.


I'm sorry, \bookpart is new to me, and I don't find it when I search  
for it in the one big page option. Where can I learn more about this?




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


Re: vertical spacing question

2008-12-03 Thread Neil Puttock
2008/12/3 james [EMAIL PROTECTED]:

 I'm sorry, \bookpart is new to me, and I don't find it when I search for it
 in the one big page option. Where can I learn more about this?

It's hot off the press. :)

Here are some links from the 2.11.65 docs:

http://lilypond.org/doc/v2.11/Documentation/topdocs/NEWS

http://lilypond.org/doc/v2.11/Documentation/user/lilypond/Multiple-scores-in-a-book#index-_005cbookpart-1

http://lilypond.org/doc/v2.11/Documentation/user/lilypond/File-structure#File-structure

http://lilypond.org/doc/v2.11/Documentation/user/lilypond/Page-breaking#index-_005cbookpart-3


Regards,
Neil


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