]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/adding-the-current-date-to-a-score.ly
resolve merge
[lilypond.git] / input / lsr / adding-the-current-date-to-a-score.ly
diff --git a/input/lsr/adding-the-current-date-to-a-score.ly b/input/lsr/adding-the-current-date-to-a-score.ly
deleted file mode 100644 (file)
index aa62a4a..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.12.3"
-
-\header {
-  lsrtags = "text, titles"
-
-  texidoces = "
-Con algo de código de Scheme, se puede añadir fácilmente la fecha
-actual a una partitura.
-"
-  doctitlees = "Añadir la fecha actual a una partitura"
-  
-  texidocfr = "
-Avec un peu de code Scheme, voici comment ajouter facilement
-la date du jour à votre partition.
-"
-  
-  doctitlefr = "Ajout de la date du jour à une partition"
-
-  texidoc = "
-With a little Scheme code, the current date can easily be added to a
-score.
-
-"
-  doctitle = "Adding the current date to a score"
-} % begin verbatim
-
-% 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
-}
-