lilypond-user
[Top][All Lists]
Advanced

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

Re: help! need an example


From: Thibaut Chevalier
Subject: Re: help! need an example
Date: Sun, 12 Mar 2006 23:52:24 +0100
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050319

Here is a piece of code that should give you ideas. Try compile it.
I did not finished the second line but you should have gotten the idea.

To have proper slurs between all the notes in the chords, use the "multi voice" entering mode which is something like that :
<< { a4( b4) } \\ { f4( g4) } >>
instead of <a b>4( <f g>4)

Enjoy.

Thibaut.



jango wrote:

I'm trying to copy music using lilypond, even though I read half of the
manual I don't understand ways of putting notes in a correct sequence :)  i
have a piece of music, it's really short (like 12 notes). I want to ask
somebody help me and explain how the notes sequence should look like.
here is the piece pf music:
http://img54.imageshack.us/my.php?image=untitled7et2.jpg

thanks a lot!
--
View this message in context: 
http://www.nabble.com/help%21-need-an-example-t1269418.html#a3369124
Sent from the Gnu - Lilypond - User forum at Nabble.com.



_______________________________________________
lilypond-user mailing list
address@hidden
http://lists.gnu.org/mailman/listinfo/lilypond-user



\header {
       title = "Title"
       composer = "Composer"
       }


\paper {
  %indent = 20\mm
}


melody = \relative c''
{
        \clef treble
        \key bes \major
        
        <g bes>2 <g bes> \bar "||" <g bes>4( <a c>2 <bes d>2) <bes d>4 <bes d>4 
<a c>2( <g bes>2) <fis a>2( <g bes>4 <a c>)    
        
        
}

bass = \relative c'
{
        \clef bass
        \key bes \major
        
        <g, g' d'>2 <g g' d'>2 \bar "||"  %etc
}


\score
{
<<
        \new StaffGroup
        <<
        \set Score.timing = ##f % this is to avoid errors in the compilation 
because our measure is not 4/4 (default)
        
           \new Staff << \melody >>
           \new Staff << \bass >>
        >>
>>

\layout{ }
\midi { \tempo 4=180}
}
        
        

reply via email to

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