\version "2.14.1" #(set-default-paper-size "a4") #(set-global-staff-size 16) #(ly:set-option 'point-and-click #f) %{ ********************************* * Musique et paroles * ********************************* %} upperOne = \relative c' { \repeat unfold 6 {c4 c c c~} c4 c\( c c~ c4\) c c c~ \repeat unfold 12 {c4 c c c~} c1 } upper = \relative c' { \clef treble \repeat unfold 20 {c4 c c c~} c1 } %{ ***************** * Partition * ***************** %} \paper { indent = 3\cm short-indent = 2\cm } \score { \new ChoirStaff << \set ChoirStaff.instrumentName = \markup { \hcenter-in #22 \center-column { \override #'(box-padding . 1.5) \with-color #(x11-color "DimGrey") \override #'(thickness . 2) { \rounded-box \center-column { \line { \italic {\fontsize #3 {"C" }}} \line { \italic {"H" }} \line { \italic {"O" }} \line { \italic {"E" }} \line { \italic {"U" }} \line { \italic {"R" }} \line { } \line { \italic {"I" }} } } } } \set ChoirStaff.shortInstrumentName = \markup { \hcenter-in #12 \center-column { \override #'(box-padding . 1.5) \with-color #(x11-color "DimGrey") \override #'(thickness . 2) { \rounded-box \center-column { \line { \italic {\fontsize #3 {"C" }}} \line { \italic {"H" }} \line { \italic {"." }} \line { } \line { \italic {"I" }} } } } } \new Voice = "Vsopranoun"{ \override Staff.InstrumentName #'padding = #-5 \set Staff.instrumentName = \markup {\hspace #3 "Sop." } \set Staff.shortInstrumentName = "S." \set Staff.midiInstrument = "choir aahs" \upperOne } \new Voice = "Valtoun" { \override Staff.InstrumentName #'padding = #-5 \set Staff.instrumentName = \markup {\hspace #3 "Alto" } \set Staff.shortInstrumentName = "A." \set Staff.midiInstrument = "choir aahs" \upper } \new Voice = "Vtenorun" { \override Staff.InstrumentName #'padding = #-5 \set Staff.instrumentName = \markup {\hspace #3 "Ténor"} \set Staff.shortInstrumentName = "T." \set Staff.midiInstrument = "choir aahs" \upper } \new Voice = "Vbasseun" { \override Staff.InstrumentName #'padding = #-5 \set Staff.instrumentName = \markup {\hspace #3 "Basse" } \set Staff.shortInstrumentName = "B." \set Staff.midiInstrument = "choir aahs" \upper } >> }