Le 01/04/2022 à 17:18, xtof pno a écrit :
> Je ne connais pas cette commande, je n'arrive pas à la placer.
> Voici ce que j'ai pour partie :
> \version "2.18.2"
> scoreAContrabass = \relative c {
> \global
> \set Score.markFormatter = #format-mark-box-alphabet
> R2. *9
> fis8 \pp ^\markup {\bold Pizz.} e g a b4
> cis4 \> d8 e fis4 \! }
>
> scoreAContrabassPart = \new Staff \with {
> instrumentName = "Contrebasse"
> shortInstrumentName = "Cb."
> midiInstrument = "contrabass"
> } { \clef bass \scoreAContrabass }
>
> \score {
> <<\scoreAContrabassPart>>
>
> \bookpart {
> \header {
> subtitle = "Contrebasse" }
> \score { { \scoreAContrabassPart }
> \layout { }
> \midi {
> \tempo 4=100 } }
> }
>
> Merci pour vos précisions.
> Christophe
Comme ceci :
\version "2.18.2"
global = { \time 3/4 }
scoreAContrabass = \relative c {
\global
\set Score.markFormatter = #format-mark-box-alphabet
R2. *9
\break
fis8 \pp ^\markup {\bold Pizz.} e g a b4
cis4 \> d8 e fis4 \! }
scoreAContrabassPart = \new Staff {
\set Staff.instrumentName = "Contrebasse"
\set Staff.midiInstrument = "contrabass"
\tag conducteur \set Staff.shortInstrumentName = "Cb."
\clef bass \scoreAContrabass
}
\score {
<< \removeWithTag conducteur \scoreAContrabassPart>>
}
\bookpart {
\header {
subtitle = "Contrebasse" }
\score { { \scoreAContrabassPart }
\layout { }
\midi {
\tempo 4=100 } }
}
Cordialement,
Jean