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