コード ネームをドイツ名や準ドイツ名に変更する
コード ネームの英語名をドイツ名 (\germanChords
は B, Bes をそれぞれ H, B に変更します) または準ドイツ名 (\semiGermanChords
は
B と Bes をそれぞれ H と Bb に変更します) に変更することができます。
scm = \chordmode {
c1/c | cis/cis
b1/b | bis/bis | bes/bes
}
\layout {
ragged-right = ##t
\context {
\ChordNames
\consists "Instrument_name_engraver"
}
}
<<
\new ChordNames {
\set instrumentName = #"default"
\scm
}
\new ChordNames {
\set instrumentName = #"german"
\germanChords \scm
}
\new ChordNames {
\set instrumentName = #"semi-german"
\semiGermanChords \scm
}
\new ChordNames {
\set instrumentName = #"italian"
\italianChords \scm
}
\new ChordNames {
\set instrumentName = #"french"
\frenchChords \scm
}
\context Voice { \scm }
>>