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

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

indication de tempo et caractère à chaque StaffGroup


From: Christophe Belletante
Subject: indication de tempo et caractère à chaque StaffGroup
Date: Mon, 6 Apr 2015 19:33:24 +0200

Bonjour à tous, 

Je ne trouve pas de solution à mon problème dans la documentation. Sans doute vous pouvez m'aider.

Je voudrais que mon indication de tempo (avec le caractère) se mette au dessus de chaque Groupe dans ma partition orchestrale.
A chaque fois que j'utilise la commande \tempo, les données se retrouvent au dessus de ma partition (parfait pour les bois, mais j'aimerais la même chose pour mes cuivres et aussi pour mes cordes). 

Quelqu'un pour me donner la solution ?

Je vous remercie !

Je colle mon code ici :

\version "2.18.2"

Flute = \relative c'' {
  \time 3/8
  \tempo "Lent" 8 = 95
  
  c4. c c}

Clarinette = \relative c'' {
  \time 3/8
  
  c4. c c}

Hautbois = \relative c'' {
  \time 3/8
  
  c4. c c}

Cor = \relative c'' {
  \time 3/8
  
  c4. c c}

ViolonUn = \relative c'' {
  \time 3/8
  
  c4. c c}

ViolonDeux = \relative c'' {
  \time 3/8
  
  c4. c c}

Alto = \relative c'' {
  \time 3/8
  
  c4. c c}

Violoncelle = \relative c'' {
  \time 3/8
  
  c4. c c}

Contrebasse = \relative c'' {
  \time 3/8
  
  c4. c c}


\score {
<<
  
  \new StaffGroup <<
   
  \new Staff {
    \set Staff.instrumentName = \markup \bold "FLÛTE"
    \set Staff.shortInstrumentName = \markup \bold "Fl."
    
    \Flute
  }

    
  \new Staff {
    \set Staff.instrumentName = \markup \bold "HAUTBOIS"
    \set Staff.shortInstrumentName = \markup \bold "Htb."
    
    \Hautbois
  }

   \new Staff {
    \set Staff.instrumentName = 
    \markup \bold \center-column { \concat { "CLARINETTE" } \italic "(en sib)" }
    \set Staff.shortInstrumentName = \markup \bold "Clar."
    
    \Clarinette

   }
  >>
  <<
  \new Staff {
    \set Staff.instrumentName = 
    \markup \bold \center-column { \concat { "COR" } \italic "(en fa)" }
    \set Staff.shortInstrumentName = \markup \bold "Cor"
    
    \Cor
  }
  >>
  
  \new StaffGroup <<
    
  \new Staff {
    \set Staff.instrumentName = \markup \bold "VIOLON I"
    \set Staff.shortInstrumentName = \markup \bold "V. I"
    
    \ViolonUn
  }

  \new Staff {
    \set Staff.instrumentName = \markup \bold "VIOLON II"
    \set Staff.shortInstrumentName = \markup \bold "V. II"
    
    \ViolonDeux
  }

  \new Staff {
    \set Staff.instrumentName = \markup \bold "ALTO"
    \set Staff.shortInstrumentName = \markup \bold "Alt."
    
    \Alto
  }
 
  \new Staff {
    \set Staff.instrumentName = \markup \bold "VIOLONCELLE"
    \set Staff.shortInstrumentName = \markup \bold "Vlc."
    
    \Violoncelle
  }

  \new Staff {
    \set Staff.instrumentName = \markup \bold "CONTREBASSE"
    \set Staff.shortInstrumentName = \markup \bold "C.B."
    
    \Contrebasse
  }
  >>
  
>> 
}

reply via email to

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