Hi,
> On Wed, Apr 22, 2020 at 3:20 PM prosfigaki80 <[email protected]> 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.