lilypond-user
[Top][All Lists]
Advanced

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

Re: Engraving a close harmony


From: Dirck Nagy
Subject: Re: Engraving a close harmony
Date: Mon, 9 Dec 2024 00:52:08 +0000

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 >>

  >>
}

Attachment: Screen Shot 2024-12-08 at 6.50.39 PM.png
Description: Screen Shot 2024-12-08 at 6.50.39 PM.png


reply via email to

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