Hello, You have to enclose your staves in << CONTENT >> to make them parallel. If you just do \new Staff … \new Staff you get basically one Staff, and then, when the first staff ends, another Staff starts (That is, in your case you actually get two different scores for each Staff, because you did not define a score around them).
So just simply do << \new Staff … \new Staff … >> And you’ll get them aligned. If you want to get rid of TimeSignatures, I’d just remove the Time_signature_engraver and the Time_signature_performer and the Timing_translator from the Staff context, and instead of doing weird Time Signatures, you can just remove the Bar_engraver from the Staff context. If you want to get rid of the spanned barline at the start of the system, you can remove the System_start_delimiter_engraver from the score context. If you want the staff spacing to reflect the system spacing, add an \override VerticalAxisGroup.default-staff-staff-spacing = #(ly:output-def-lookup (ly:parser-lookup '$defaultpaper) system-system- spacing) To the Staff context. If you want to get lineBreaks only at specified positions, override in the Score context \override NonMusicalPaperColumn.line-break-permission = ##f I’ll append a full example. Regards, Valentin
\version "2.20" \paper { ragged-last = ##f indent = 0 short-indent = 0 } << \new Staff \relative c' { \set stringNumberOrientations = #'(down) \set fingeringOrientations = #'(left) <e\4-2 g-0 c-1>1 <f-3 a-2 d-4>1 <g b e>1 <a\3-2 c-1 f-1>1 *1 <c-2 e-4 a-3>1 <d-2 f-1 b-3>1 <e-2 g-1 c-1>1 <d f b>1 <c e a>1 *1 1 <g b e\4>1 <f a d>1 <e g c>1 } \new Staff \relative d' { \key d \major <fis a d>1 <g b e>1 1 *1 <cis e a>1 <d fis b>1 <e g cis>1 <fis a d>1 <e g cis>1 <d fis b>1 <cis e a>1 *1 1 <g b e>1 <fis a d>1 } >> \layout { \context { \Staff \remove Time_signature_engraver \remove Time_signature_performer \remove Bar_engraver \remove Timing_translator \override VerticalAxisGroup.default-staff-staff-spacing = #(ly:output-def-lookup (ly:parser-lookup '$defaultpaper) 'system-system-spacing) } \context { \Score \remove Bar_number_engraver \remove System_start_delimiter_engraver \override NonMusicalPaperColumn.line-break-permission = ##f } }
signature.asc
Description: This is a digitally signed message part.