lilypond-user-fr
[Top][All Lists]
Advanced

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

Re: Exercices différenciés à la suite


From: Seventies
Subject: Re: Exercices différenciés à la suite
Date: Sun, 10 Feb 2013 14:19:17 -0800 (PST)

Il faut créer plusieurs blocs \score, comme ceci par exemple :

\version "2.16.1"
\paper {
        ragged-right = ##f      % pour occuper toute la ligne
}
global = {
        \key d \major
        \time 4/4
        \tempo "Allegro"
}

MusicA = \relative c' {
        d4 e fis r \bar "|."
}

\score {
        \new Staff
                \new Voice = "MusicA" {
                        << \global \MusicA>>
                }
        \layout {
        }
}

%%%

global = {
        \key bes \major
        \time 3/4
        \tempo "Modéré"
}

MusicB = \relative c' {
        bes4 c d \bar "|."
}

\score {
        \new Staff
        \new Voice = "MusicB" {
                << \global \MusicB>>
        }
        \layout {
        }
}



--
View this message in context: 
http://lilypond-french-users.1298960.n2.nabble.com/Exercices-differencies-a-la-suite-tp7579024p7579027.html
Sent from the LilyPond French Users mailing list archive at Nabble.com.



reply via email to

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