Nitpick: ly:spanner-bound grob name slur -> spanner.
[lilypond.git] / input / lsr / adding-the-current-date-to-a-score.ly
blobc73bb109051d28c06b700e5442d833e375ccf7a0
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
5 \header {
6 lsrtags = "text, titles"
8 texidoces = "
9 Con algo de código de Scheme, se puede añadir fácilmente la fecha
10 actual a una partitura.
12 doctitlees = "Añadir la fecha actual a una partitura"
14 texidocfr = "
15 Avec un peu de code Scheme, voici comment ajouter facilement
16 la date du jour à votre partition.
19 doctitlefr = "Ajout de la date du jour à une partition"
21 texidoc = "
22 With a little Scheme code, the current date can easily be added to a
23 score.
26 doctitle = "Adding the current date to a score"
27 } % begin verbatim
29 % first, define a variable to hold the formatted date:
30 date = #(strftime "%d-%m-%Y" (localtime (current-time)))
32 % use it in the title block:
33 \header {
34 title = "Including the date!"
35 subtitle = \date
38 \score {
39 \relative c'' {
40 c4 c c c
43 % and use it in a \markup block:
44 \markup {
45 \date