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

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

Re: Partie vocale et piano


From: Valentin Villenave
Subject: Re: Partie vocale et piano
Date: Sat, 14 Jul 2007 20:27:09 +0200

Le 14/07/07, Jean Gautier<address@hidden> a écrit :

Bonjour à tous,
Je suis en train d'écrire une partition chant et piano; mais je ne suis pas
satisfait:

Bonjour Jean,

il nous serait plus facile de t'aider si tu postais ton fichier
lilypond, ou tout au moins un extrait...

Il y a manifestement un problème dans la structure de ton bloc \score
; si tu utilises l'éditeur jEdit, tu peux te servir de l'Assistant de
Création de Partition pour te donner un squelette solide et sain ;
sinon tu trouveras ci-dessous le modèle chant/piano donné dans la
documentation (annexe D, paragraphe 2.2)

%%%%%% snippet%%%%%

 \version "2.11.15"
    melody = \relative c'' {
       \clef treble
       \key c \major
       \time 4/4

       a b c d
    }

    text = \lyricmode {
       Aaa Bee Cee Dee
    }

    upper = \relative c'' {
       \clef treble
       \key c \major
       \time 4/4

       a b c d
    }

    lower = \relative c {
       \clef bass
       \key c \major
       \time 4/4

       a2 c
    }

    \score {
       <<
          \new Voice = "mel" {
              \autoBeamOff
              \melody
          }
          \new Lyrics \lyricsto mel \text

          \new PianoStaff <<
             \new Staff = "upper" \upper
             \new Staff = "lower" \lower
          >>
       >>
       \layout {
          \context { \RemoveEmptyStaffContext }
       }
       \midi { }
    }




reply via email to

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