Afegir la data actual a una partitura

Amb quelcom de codi de l’Scheme, es pot afegir fàcilment la data actual a una partitura.

\paper { tagline = ##f }

% first, define a variable to hold the formatted date:
date = #(strftime "%d-%m-%Y" (localtime (current-time)))

% use it in the title block:
\header {
  title = "Including the date!"
  subtitle = \date
}

\score {
  \relative c'' {
    c4 c c c
  }
}
% and use it in a \markup block:
\markup {
  \date
}

[image of music]

Fragments del LilyPond v2.25.15 (branca de desenvolupament).