[ << Text ] | [Top][Contents] | [ Vocal music >> ] |
[ < タブ譜にマークアップを追加する ] | [ Up : Text ] | [ 歌詞の垂直方向のスペースを調整する > ] |
楽譜に現在日時を追加する
少しの Scheme コードで、楽譜に現在日時を追加することができます。
\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 }