Display non-English chord names: Difference between revisions
Appearance
m Lemzwerg moved page Changing the chord names to German or semi-German notation to Display non-English chord names without leaving a redirect |
mNo edit summary |
||
| Line 28: | Line 28: | ||
} | } | ||
\new ChordNames { | \new ChordNames { | ||
\set instrumentName = #" | \set instrumentName = #"German" | ||
\germanChords \scm | \germanChords \scm | ||
} | } | ||
\new ChordNames { | \new ChordNames { | ||
\set instrumentName = #"semi- | \set instrumentName = #"semi-German" | ||
\semiGermanChords \scm | \semiGermanChords \scm | ||
} | } | ||
\new ChordNames { | \new ChordNames { | ||
\set instrumentName = #" | \set instrumentName = #"Italian" | ||
\italianChords \scm | \italianChords \scm | ||
} | } | ||
\new ChordNames { | \new ChordNames { | ||
\set instrumentName = #" | \set instrumentName = #"French" | ||
\frenchChords \scm | \frenchChords \scm | ||
} | } | ||
Revision as of 06:20, 20 February 2026
The default English naming of chords can be changed to other languages, as demonstrated in this snippet.
\version "2.24"
scm = \chordmode {
c1/c | cis/cis
b1/b | bis/bis | bes/bes
}
\layout {
indent = 3\cm
ragged-right = ##f
\context {
\ChordNames
\consists "Instrument_name_engraver"
}
\context {
\Score
\override InstrumentName.self-alignment-Y = -1.2
\override InstrumentName.self-alignment-X = #RIGHT
}
}
<<
\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 }
>>