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

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

Re: écrire chansons


From: Christian LE BARS
Subject: Re: écrire chansons
Date: Fri, 4 Nov 2016 16:43:21 +0100
User-agent: Mozilla/5.0 (X11; Linux i686; rv:45.0) Gecko/20100101 Thunderbird/45.4.0

bonjour,

voila ce que je fais :

\version "2.19.44"
#(set-global-staff-size 18) %taille des portées
\include "lilyjazz.ily"
%----------------------------------------------
\paper
 {
  oddFooterMarkup = \markup { \fill-line { \fromproperty #'header:title  } }
  print-page-number = ##t
 }
%-------------------------------------------------
\header
{
   title = \markup { \fontsize #1 \bold\italic "Titre" }
  composer =\markup { \italic"compositeur" } 
}
%--------------------------------
Global =
{
  \numericTimeSignature
 \time 4/4
 \key c\major
}
%----------------------------------
CoupletA =
\lyricmode
  {
   \override LyricText #'font-size = #2
   \override LyricText #'font-name = # "comics sans ms"
   les pa- ro- les
  }
%----------------------------------
CoupletB =
\lyricmode
  {
   \override LyricText #'font-size = #2
   \override LyricText #'font-name = # "comics sans ms"
   en- co- re
  }
%-------------------------------
 LesAccords =
 \new ChordNames
  {
   \override ChordNames.ChordName.font-family = #'roman
  \override ChordNames . ChordName #'font-size = #1
  \set chordChanges = ##t
  \set Score.majorSevenSymbol = \markup {Maj7}
  \set chordNameSeparator = \markup { "/" }
  \set minorChordModifier = \markup{"-"}
  \chordmode
   {
   c1 d:m7
   }
 }
%--------------------------------
LaVoix =
 \relative c'
 {
   \Global
  c4 d e g
 }
%----------------------------------
 LaMelodie =
 << %mise en parallèle la voix et les paroles
    \context Voice = voix
    \LaVoix
    \context Lyrics = coupletA\lyricsto voix  \CoupletA
    \context Lyrics = coupletB\lyricsto voix  \CoupletB 
 >>
%-------------------------------
MainDroite =
\relative c'
 {
  \clef treble
  \Global
  <e g>1
 }
%
MainGauche =
\relative c
 {
  \clef bass
  \Global
   {
     c1
    }
 }
%-------------------------------------
 LePiano =
  {
    \new PianoStaff   
   << % les portées piano
        \new Staff { \MainDroite }
        \new Staff { \MainGauche }
   >>
 }
%------------------------------------
\score
{
  <<
    \LesAccords
    \LaMelodie
    \LePiano
  >>
  \layout {}
}
bonne lecture.



reply via email to

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