Elaine Gould in Behind Bars explicitly rejects this layout (page 91: "Altered Unisons").
Paul From: Dirck Nagy <dn...@uwlax.edu> To: Knute Snortum <ksnor...@gmail.com>, Robin Bannister <r...@dabble.ch>, William Rehwinkel <will...@williamrehwinkel.net>, "dirckn...@hotmail.com" <dirckn...@hotmail.com> Cc: Saul Tobin <saul.james.to...@gmail.com>, "lilypond-user@gnu.org" <lilypond-user@gnu.org> Sent: 09/12/2024 0:52 Subject: Re: Engraving a close harmony How about using; \once \override NoteColumn.force-hshift = #1.0 Here is the code: \version "2.24.1" global = { \key c \major \time 6/8 } rightOne = \relative c'' { \global % Music follows here. e16 f f dis dis! e } rightTwo = \relative c'' { \global % Music follows here. d16 g, g \once \override NoteColumn.force-hshift = #1.0 d'! \once \override NoteColumn.force-hshift = #1.0 d! g, } \score { << \new Staff = "right" \with { midiInstrument = "acoustic grand" } << \rightOne \\ \rightTwo >> >> }