| [ << Really cool ] | [Top][Contents] | [ Really simple >> ] |
| [ < Really cool ] | [ Up: Really cool ] | [ Blanchiment de lignes de portée avec la commande \whiteout > ] |
Ajout de la date du jour à une partition
Avec un peu de code Scheme, voici comment ajouter facilement la date du jour à votre partition.
\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 }
| [ << Really cool ] | [Top][Contents] | [ Really simple >> ] |
| [ < Really cool ] | [ Up: Really cool ] | [ Blanchiment de lignes de portée avec la commande \whiteout > ] |