lilypond-user
[Top][All Lists]
Advanced

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

Re: Octave help


From: Wilbert Berendsen
Subject: Re: Octave help
Date: Mon, 25 Jan 2010 11:55:09 +0100
User-agent: KMail/1.12.4 (Linux/2.6.31-17-generic; KDE/4.3.4; i686; ; )

Op zondag 24 januari 2010 schreef Michael:

> {
>      \clef treble
>      \time 4/4
>      \key g \major
>      \relative c
>            \partial 4 d8 d
>            d d g g g4 f8 g
>            a g c a b2
>            d'4 a8 b c4 b8 c
>            d'4 e'8( c) b g a4
>            g1         
>  }
> 

The \relative command expects a music expression. In this example it makes the 
expression \partial 4 relative which has no effect. Either place the music in 
brackets or put \relative outside the main brackets:

{
     \clef treble
     \time 4/4
     \key g \major
     \relative c {
           \partial 4 d8 d
           d d g g g4 f8 g
           a g c a b2
           d'4 a8 b c4 b8 c
           d'4 e'8( c) b g a4
           g1
     }  
 }
 
or

\relative c {
     \clef treble
     \time 4/4
     \partial 4 d8 d
     \key g \major
     d d g g g4 f8 g
     a g c a b2
     d'4 a8 b c4 b8 c
     d'4 e'8( c) b g a4
     g1          
 }

best regards,
Wilbert Berendsen

-- 
Frescobaldi, LilyPond editor for KDE: http://www.frescobaldi.org/
Nederlands LilyPond forum: http://www.lilypondforum.nl/




reply via email to

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