lilypond-user
[Top][All Lists]
Advanced

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

Re: Snippet: Tie does not appear


From: Nick Payne
Subject: Re: Snippet: Tie does not appear
Date: Tue, 21 Jun 2011 13:42:01 +1000
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110424 Lightning/1.0b2 Thunderbird/3.1.10

On 21/06/11 12:59, Ivan Kuznetsov wrote:
\version "2.12.3"
\include "english.ly"

\score {

<<
   \new Staff = "guitar"
   {
     \clef "treble_8"
     \time 4/4

     % guitar m01
     <<
     { s2.   g'8. [e,16~]  }
     \\
     {  r2. f8 [b8]      }
     >>

     % guitar m02
     <<
     {  <fs f' a'>4. <g' bf'>8  <g' b'>8 <bf a' cs''>4.   }
     \\
     {  s2   g'16 [gs16]   s4      }
     \\
     { e,1}
     >>
   }

>>

}
You can't have a tie between notes in different voices. Re-arrange the voices to have the notes in the same voice (or alternatively, create an extra voice with hidden notes that has the tie). And BTW, it's normally easier to enter notes using relative mode, where the pitch of each note is relative to the preceding note: http://lilypond.org/doc/v2.14/Documentation/learning/simple-notation

\relative c' {
    \clef "treble_8"
    \time 4/4
    <<
    {
        s2. g'8. e,,16_~ |
        e1 |
    }
    \\
    {
        r2. f'8 b |
        s2 g'16 gs, s4. |
    }
    \\
    {
        s1 |
        <fs f' a>4. <g' bf>8  <g b> <bf, a' cs>4. |
    }
    >>
}

Nick

reply via email to

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