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

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

Re: Problème avec ornementation


From: Olivier Miakinen
Subject: Re: Problème avec ornementation
Date: Sun, 15 Oct 2017 15:06:50 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0

Le 15/10/2017 11:34, julien a écrit :
> Bonjour,
> merci Olivier pour la traduction.
> Un détail : je ne sais pas comment créer une mesure invisible.

Voici un résultat qui est presque bien : dans \global j'ai déclaré une
mesure partielle, avec un silence invisible, et j'ai supprimé la barre
de mesure sur les portées, sauf que... je ne sais pas supprimer la
barre de mesure *entre* les deux portées de piano.

\version "2.18.2"
\language "italiano"

\paper {
  #(set-paper-size "a4")
}

global = {
  \key do \major
  \time 4/4
  \partial 8
  \tempo "Allegro marziale"
  s8
  \once \omit Score.BarLine
}

tenorOne = \relative do' {
  \global
  do4 do do do do do do do do
}

tenorTwo = \relative do' {
  \global
  do4 do do do do do do do do
}

bass = \relative do {
  \global
  do4 do do do do do do do do
}

verse = \lyricmode {
  % Ajouter ici des paroles.

}

right = \relative do'' {
  \global
  do4 do do do do do do do do
}

left = \relative do' {
  \global
  \acciaccatura do,8 <do' mi sol do>4 q q q q q q q q
}

choirPart = \new ChoirStaff <<
  \new Staff \with {
    midiInstrument = "acoustic grand"
    instrumentName = "Ténor I"
  } {
    \clef "treble_8"
    \new Voice = "tenor1" \tenorOne
  }
  \new Lyrics \with {
    \override VerticalAxisGroup #'staff-affinity = #CENTER
  } \lyricsto "tenor1" \verse
  \new Staff \with {
    midiInstrument = "acoustic grand"
    instrumentName = "Ténor II"
  } {
    \clef "treble_8"
    \new Voice = "tenor2" \tenorTwo
  }
  \new Lyrics \with {
    \override VerticalAxisGroup #'staff-affinity = #CENTER
  } \lyricsto "tenor2" \verse
  \new Staff \with {
    midiInstrument = "acoustic grand"
    instrumentName = "Basse"
  } {
    \clef bass
    \new Voice = "bass" \bass
  }
>>

pianoPart = \new PianoStaff \with {
  instrumentName = "Piano"
} <<
  \new Staff = "right" \with {
    midiInstrument = "acoustic grand"
  } \right
  \new Staff = "left" \with {
    midiInstrument = "acoustic grand"
  } { \clef bass \left }
>>

\score {
  <<
    \choirPart
    \pianoPart
  >>
  \layout { }
  \midi {
    \tempo 4=100
  }
}




reply via email to

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