lilypond-user
[Top][All Lists]
Advanced

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

Re: Equal space between all notes


From: Kieren MacMillan
Subject: Re: Equal space between all notes
Date: Thu, 23 Apr 2020 12:33:47 -0400

Hi,

> On Wed, Apr 22, 2020 at 3:20 PM prosfigaki80 <address@hidden> wrote:
> > I cannot find a way to set the same horizontal space between
> > different notes. For example, i would like to have the identical horizontal
> > space between 2/4 notes and 1/4... A greater duration usually takes more
> > space, while I need always the same... Thanks!

I think your best bet is packed-spacing:

%%%
\version "2.21"

\score {
  <<
    \new RhythmicStaff {
      \cadenzaOn
      c'2 c'16[ c' c' c']
      \tuplet 5/4 { c'16[ c' c' c' c'] }
      c'4 4 2 1
      \tuplet 9/8 { c'8[ c' c' c' c' c' c' c' c'] }
      
    }
  >>
  \layout {
    ragged-right = ##f
    \context {
      \Score
      \override SpacingSpanner.packed-spacing = ##t
    }
  }
}
%%%

Hope that helps!
Kieren.


reply via email to

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