[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Graver le copyright et la tagline sur toutes les pages
From: |
Valentin Villenave |
Subject: |
Re: Graver le copyright et la tagline sur toutes les pages |
Date: |
Sat, 4 Apr 2020 07:20:46 +0000 |
On 4/4/20, david <address@hidden> wrote:
> Il me semblait qu'il y avait une instruction simple, mais je ne la
> retrouve pas...
C’est par ici :
http://lilypond.org/doc/latest/Documentation/notation/custom-titles-headers-and-footers.fr.html#custom-layout-for-headers-and-footers
Le mieux est d’aller directement voir comment le pied de page par
défaut est défini, dans le fichier ly/titling-init.ly puis de le
copier en virant l’instruction \on-the-fly, comme ceci :
%%%%
\paper {
oddFooterMarkup = \markup {
\column {
\fill-line {
% \on-the-fly #part-first-page
\fromproperty #'header:copyright
}
\fill-line {
% \on-the-fly #last-page
\fromproperty #'header:tagline
}
}
}
}
%%%%
V.