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

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

Re: Accolades


From: Christian Lalune
Subject: Re: Accolades
Date: Thu, 20 Jan 2022 23:41:02 +0100

Bonsoir,

Voici:

%%%%%%%%%%%%%%%%%%
\version "2.20.0"
oboe = { c'' }
englishHorn = { f' }
bassoon = { c }

oboePart = \new Staff \with {
  % instrumentName = "Hautbois"
  midiInstrument = "oboe"
} \oboe

englishHornPart = \new Staff \with {
  % instrumentName = "Cor Anglais"
  midiInstrument = "english horn"
} \englishHorn

bassoonPart = \new Staff \with {
  % instrumentName = "Basson"
  midiInstrument = "bassoon"
} { \clef bass \bassoon } 

\score {
  \new GrandStaff {
    <<
      \oboePart
      \englishHornPart
      \bassoonPart
    >>
  }
  \layout { }
  \midi {
    \tempo 4=60  }
} 
%%%%%%%%%%%%%%%%%%


Bien à vous.

Christian Lalune



> Le 20 janv. 2022 à 17:34, xtof pno <xtof01-pno@yahoo.fr> a écrit :
> 
> Bonjour,
> Je voudrais placer une accolade devant chaque système d'un trio (à vent).
> La documentation parle de :
> \new GrandStaff <<
>   \new Staff { c1 c }
>   \new Staff { c1 c }
> >>
> 
> Mais je ne suis pas à l'aise pour organiser les instruments là-dedans.
> Voici ce que j'ai :
> \new GrandStaff <<
>   
> oboePart = \new Staff \with {
>  % instrumentName = "Hautbois"
>   midiInstrument = "oboe"
> } \oboe
> 
> englishHornPart = \new Staff \with {
>  % instrumentName = "Cor Anglais"
>   midiInstrument = "english horn"
> } \englishHorn
> 
> bassoonPart = \new Staff \with {
>  % instrumentName = "Basson"
>   midiInstrument = "bassoon"
> } { \clef bass \bassoon } 
> >>
> 
> \score {
>   <<
>     \oboePart
>     \englishHornPart
>     \bassoonPart
>   >>
>   \layout { }
>   \midi {
>     \tempo 4=60  }
> } 
> 
> Pourriez-vous m'indiquer les bouts de code qu'il me manque pour réussir à 
> placer cette accolade ?
> Merci beaucoup pour vos éclairages.
> Christophe J




reply via email to

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