lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: horizontal spacing


From: Kees van den Doel
Subject: Re: horizontal spacing
Date: Sun, 01 Mar 2009 12:37:53 -0800

> Imho Lilypond uses to many bars on one 'row' in a-4 format. I 
> got about 
> 8 bars (4/4), I prefer to have 4.
> I tried to use:
> 
> \layout { }
>   \midi {
>     \context {
>       \Score
>        \override SpacingSpanner
>                 #'base-shortest-duration = #(ly:make-moment 1 16)
> 
> 
> 
> But it doesn't seems to work...

I have the following commands to adjust all that in my files (these are set to 
get as many bars on a line as possible, just tweak the numbers):

\version "2.12.2"
#(set-global-staff-size 25)

\paper {
  between-system-space = 0\cm
  between-system-padding = #3
  ragged-bottom=##t
  ragged-last-bottom=##t
}


\score {
%...
\layout { 
    \context {
      \Score
      \override SpacingSpanner #'base-shortest-duration = #(ly:make-moment 1 1)
      \override SpacingSpanner #'shortest-duration-space  = #0
      \override SpacingSpanner #'spacing-increment  = #0
    }

  }
}





reply via email to

[Prev in Thread] Current Thread [Next in Thread]