Titles
Titles and headers
楽譜に現在日時を追加する
少しの Scheme コードで、楽譜に現在日時を追加することができます。
% first, define a variable to hold the formatted date:
date = #(strftime "%d-%m-%Y" (localtime (current-time)))
% use it in the title block:
\header {
= "Including the date!"
= \date
}
\score {
\relative c'' {
c4 c c c
}
}
% and use it in a \markup block:
\markup {
\date
}
楽器名を揃える
楽器名の水平方向の位置は Staff.InstrumentName.self-alignment-X
プロパティを変更することで調整することができます。\layout
変数は indent
と short-indent
を定義しており、それぞれ最初のシステムとその後のシステムで、楽器名に割くスペースの量を変更することができます。
\paper { left-margin = 3\cm }
\score {
\new StaffGroup <<
\new Staff \with {
\override InstrumentName.self-alignment-X = #LEFT
instrumentName = \markup \left-column {
"Left aligned"
"instrument name"
}
shortInstrumentName = "Left"
}
{ c''1 \break c''1 }
\new Staff \with {
\override InstrumentName.self-alignment-X = #CENTER
instrumentName = \markup \center-column {
Centered
"instrument name"
}
shortInstrumentName = "Centered"
}
{ g'1 g'1}
\new Staff \with {
\override InstrumentName.self-alignment-X = #RIGHT
instrumentName = \markup \right-column {
"Right aligned"
"instrument name"
}
shortInstrumentName = "Right"
}
{ e'1 e'1 }
>>
\layout {
ragged-right = ##t
indent = 4\cm
short-indent = 2\cm
}
}
全てのヘッダの例示
全てのヘッダの例示です。
\header {
= "copyright"
= "title"
= "subtitle"
= "composer"
= "arranger"
= "instrument"
= "meter"
= "opus"
= "piece"
= "poet"
= "All header fields with special meanings."
= "public domain"
enteredby = "jcn"
source = "urtext"
}
\layout {
ragged-right = ##f
}
\score {
\relative c'' { c1 | c | c | c }
}
\score {
\relative c'' { c1 | c | c | c }
\header {
= "localtitle"
= "localsubtitle"
= "localcomposer"
= "localarranger"
= "localinstrument"
metre = "localmetre"
= "localopus"
= "localpiece"
= "localpoet"
= "localcopyright"
}
}
バージョン番号を出力する
lilypond-version
の出力を歌詞に配置することで、楽譜内に、あるいはlilypond-book
で生成されたドキュメント内に LilyPond のバージョン番号を表示することができます。あるいは、以下のようにしてバージョン番号を他の文字列と結合することができます。
\markup { Processed with LilyPond version #(lilypond-version) }