lilypond-user
[Top][All Lists]
Advanced

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

Re: Tieing into two voices


From: Knute Snortum
Subject: Re: Tieing into two voices
Date: Mon, 9 Sep 2024 11:05:49 -0700


On Mon, Sep 9, 2024 at 10:57 AM Timothy Lanfear <timothy@lanfear.me> wrote:


On 09/09/2024 18:00, Sebastian Menge via LilyPond user discussion wrote:
Thanks Paul that works. However, there are warnings.

Now I found the documentation (Instantiating voices explicitely), but still I find it difficult to typeset something like this

image.png
It gives me a headache :-)

Is it possible to reference the actual voices by name during "tieing"?

For example take the third measure in the example above. The gis comes from the measures before, but the b continues to the following measures.

This example is a sequence of chords, and ties can be attached to individual notes of a chord.

\version "2.24.0"

\relative c' {
  \numericTimeSignature
  \clef "bass"
  \key e\major

  \time 4/4
  <gis_~ b>1 |
  \time 2/4
  <gis~ a cis>2
  \time 3/4
  <gis~ b~>2 <fis~ gis b~>4
  <e~ fis a b~>2.
  \time 2/4
  <e g b>2
}


And LilyPond will usually "Do the Right Thing" if you just tie the chords:

%%%
\version "2.24.4"
\language "english"

\relative {
  \clef bass
  \key e \major
  <gs b>1~ |
  \time 2/4
  <gs a cs>2~ |
  \time 3/4
  <gs b>2~ <fs gs b>4~ |
  <e fs a b>2.~ |
  \time 2/4
  <e g b>2 |
}
%%% 


--
Knute Snortum



reply via email to

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