Bonjour
j'ai écris n'importe quoi hier soir
il suffit de ne pas écrire instrumentName ou shortInstrumentName
%----------------------------------
\version "2.24.1"
\header { title = "Concerto pour Guitare et Hautbois" }
global = {
\key c \major
\time 4/4
}
guitare = \relative c' {
\global
%ne pas écrire ainsi "
% \set Staff.instrumentName = "Guitare"
% \set Staff.shortInstrumentName = "Gtr."
c1 \break c \break c
}
oboe = \relative c' {
\global
%ne pas écrire ainsi
% \set Staff.instrumentName = "Oboe"
% \set Staff.shortInstrumentName = "Ob"
g1 \break g \break g
}
\bookpart {
\score {
<<
\new Staff \with {
midiInstrument = "acoustic guitar (steel)"
instrumentName = "Guitare"
shortInstrumentName = "Gtr."
} \guitare
\new Staff \with {
midiInstrument = "acoustic guitar (steel)"
instrumentName = "Oboe"
shortInstrumentName = "Ob"
} \oboe
>>
\layout { }
\midi {
\tempo 4=100
}
}
}
\bookpart {
\header { instrument = "Guitare" }
\score {
\new Staff \with {
midiInstrument = "acoustic guitar (nylon)"
} \guitare
}
}
\bookpart {
\header { instrument = "Oboe" }
\score {
\new Staff \with {
midiInstrument = "oboe"
} \oboe
}
}
%------------------------------
Cordialement