lilypond-user
[Top][All Lists]
Advanced

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

Re: how to tie?


From: Martin Wadsack
Subject: Re: how to tie?
Date: Sun, 24 Nov 2019 15:30:22 +0100
User-agent: KMail/5.2.3 (Linux/4.9.0-11-amd64; KDE/5.28.0; x86_64; ; )

Hi Jinsong,

 

it's because the double backslash generates a new voice context for every _expression_. In fact, the chord where you want to assign the tie, does not exist anymore, because the voice has ended.

 

See: http://lilypond.org/doc/v2.18/Documentation/notation/multiple-voices.html

'The << {…} \\ {…} >> construct, where the two (or more) expressions are separated by double backslashes, behaves differently to the similar construct without the double backslashes: all the expressions within this construct are assigned to new Voice contexts. These new Voice contexts are created implicitly and are given the fixed names "1", "2", etc.'

 

 

You could to it this way:

 

 

\version "2.18.2"

\relative c, {

\clef "bass"

\key g \major

\time 3/4

<<

{

\tieNeutral

s4 <b' fis'>2 ~

<b fis'>2. ~ |

<b fis'>2.

}

\\

{

<b, fis'>2.

}

>>

}

 

Best regards,

Martin

 

Am Sonntag, 24. November 2019, 21:56:23 CET schrieb Jinsong Zhao:

> \version "2.19.83"

> \relative c, {

>   \clef "bass"

>   \key g \major

>   \time 3/4

>   << {s4 <b' fis'>2 ~ } \\ {<b, fis'>2.} >> |

>   <b' fis'>2. ~ |

>   <b fis'>2.

> }

 

 

 


reply via email to

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