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

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

Re: portée à 11 lignes


From: Martial
Subject: Re: portée à 11 lignes
Date: Sun, 17 May 2009 16:38:00 +0200
User-agent: Thunderbird 2.0.0.21 (Windows/20090302)

Je ne comprends pas tout mais
voici un 3 façons de faire


--
Martial


%%%%%%%%%%%%%%%%%%%ONZE-LIGNES.LY
\version "2.12.2"
\score{
<<
\new Staff  { 
        \set Staff.instrumentName = \markup  { \italic "Ex.1" }
        \override Staff.StaffSymbol #'line-positions = 
        #'(-16 -14 -12 -10 -8 -6 -4 -2 0 2 4 )
        f,1 g, a, b, c d e f g a b c' d' e' f' g' a' b' c'' d'' e'' f'' g'' 
}
\addlyrics { fa sol la si ut re mi fa sol la si ut ré mi fa sol la si ut ré 
mi fa sol }
>>

\layout {       
        indent = 0
        ragged-right= ##f
    \context {
      \Staff
      \remove "Time_signature_engraver"
      \remove "Clef_engraver"
      \remove "Bar_engraver"
    }
         \context { \Lyrics
      \override LyricText #'font-shape = #'italic
    }
}
}

%%%%EXPLE 2
\score{
<<
\new Staff \relative c { 
        \set Staff.instrumentName = \markup  { \italic "Ex.2" }
        \override Staff.StaffSymbol #'line-count = 11
        \set Staff.clefGlyph = #"clefs.F"
         \set Staff.clefPosition = #-6
        f g a b c 
        \clef treble
        c d e f g a b c d e f g a b c d e
}
\addlyrics { fa sol la si DO Do re mi fa sol la si Do ré mi fa sol la si Do 
ré mi fa sol }
>>

\layout {       
        indent = 0
        ragged-right= ##f
    \context {
      \Staff
      \remove "Time_signature_engraver"
     % \remove "Clef_engraver"
      \remove "Bar_engraver"
    }
         \context { \Lyrics
      \override LyricText #'font-shape = #'italic
    }
}
}

%%%%EXPLE 3
\score{
<<
\new Staff \relative c'' { 
        \set Staff.instrumentName = \markup  { \italic "Ex.3" }
                \override Staff.StaffSymbol #'line-positions = 
        #'(-2 0 2 4 6 8 10 12 14 16 18 )
         \set Staff.clefGlyph = #"clefs.F"
         \set Staff.clefPosition = #4
        f c f, g a b c d e f g a b c 
         \set Staff.clefGlyph = #"clefs.G"
         \set Staff.clefPosition = #12
        c d e f g a b c
}
\addlyrics { fa  Do fa sol la si Do ré mi fa sol la si Do do ré mi fa sol la 
si Do }
>>

\layout {       
        indent = 0
        ragged-right= ##f
    \context {
      \Staff
      \remove "Time_signature_engraver"
     % \remove "Clef_engraver"
      \remove "Bar_engraver"
    }
         \context { \Lyrics
      \override LyricText #'font-shape = #'italic
    }
}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

reply via email to

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