Pardon. Comme j'ai “joué avec“, je suis un peu plus loin de la proposition originale et ce bold là n'est plus là.
\book {
\bookOutputSuffix "alto"
\header {
instrument = \markup {\pad-markup #2 \larger "Alto"}
}
#(set-global-staff-size 20)
\score {
\new Staff = "alto" <<
\new Voice \alto_tango
\new Voice \structure_tango
>>
\header {
piece = \markup "Tango"
}
}
\score {
\new Staff = "alto" <<
\new Voice \alto_valse
\new Voice \structure_valse
>>
\header {
piece = \markup "Valse"
breakbefore = ##t
}
}
\score {
\new Staff = "alto" <<
\new Voice \alto_final
\new Voice \structure_final
>>
\header {
piece = \markup "Final filmique"
breakbefore = ##f
}
}
\paper {
#(set-paper-size "a4" )
scoreTitleMarkup = \markup {
\fill-line {
\fontsize #4 \bold \fromproperty #'header:piece
}
}
evenHeaderMarkup = \markup %% pour les pages impaires
\fill-line {
\if \should-print-page-number \fromproperty #'page:page-number-string
\unless \on-first-page-of-part \smaller \italic \concat { "– " \fromproperty #'header:title " –" }
\unless \on-first-page-of-part \smaller \italic \fromproperty #'header:instrument
}
oddHeaderMarkup = \markup %% pour les pages paires
\fill-line {
\unless \on-first-page-of-part \smaller \italic \fromproperty #'header:instrument
\unless \on-first-page-of-part \smaller \italic \concat { "– " \fromproperty #'header:title " –" }
\if \should-print-page-number \fromproperty #'page:page-number-string
}
}
}