On 21/06/11 12:59, Ivan Kuznetsov wrote:
\version "2.12.3"
\include "english.ly <http://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
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to