lilypond-user-fr
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Pied de page


From: Valentin Villenave
Subject: Re: Pied de page
Date: Fri, 3 Apr 2020 21:37:37 +0000

On 4/3/20, Vincent Gay <address@hidden> wrote:
> Par exemple comme ça :
>
> tagline = \markup {
>     \fill-line {
>       \column { \fromproperty #'header:subtitle }
>       \column { #(strftime "%e %B %Y" (localtime (current-time)))
>       }
>     }
> }

On peut même s’amuser encore plus :

%%%%

\header {
  tagline = \markup {
    \fill-line {
      ""
      \line {
        \concat { #(string-titlecase (getlogin)) ,}
        \concat {
          #(begin
            (setlocale LC_TIME "fr_FR")
            (strftime "%e %B %Y" (localtime (current-time))))
          . }
      }
    }
  }
}

%%%%

V.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]