| [ << Scheme ] | [Top][Contents] | [ Spacing >> ] |
| [ < Adding links to objects ] | [ Up: Scheme ] | [ Adjusting slur positions vertically > ] |
Adding the current date to a score
With a little Scheme code, the current date can easily be added to a score.
\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 }
| [ << Scheme ] | [Top][Contents] | [ Spacing >> ] |
| [ < Adding links to objects ] | [ Up: Scheme ] | [ Adjusting slur positions vertically > ] |