Display non-English chord names: Difference between revisions

m New category
Tags: Mobile edit Mobile web edit
mNo edit summary
Line 1: Line 1:
The english naming of chords (default) can be changed to german (<code>\germanChords</code> replaces B and Bes with H and B) or semi-german (<code>\semiGermanChords</code> replaces B and Bes with H and Bb).
The default English naming of chords can be changed to other languages, as demonstrated in this snippet.


<lilypond version="2.24">
<lilypond version="2.24">
Line 7: Line 7:
}  
}  


\layout {
  indent = 3\cm
  ragged-right = ##f


\layout {
  ragged-right = ##t
   \context {
   \context {
     \ChordNames
     \ChordNames
     \consists "Instrument_name_engraver"
     \consists "Instrument_name_engraver"
  }
  \context {
    \Score
    \override InstrumentName.self-alignment-Y = -1.2
    \override InstrumentName.self-alignment-X = #RIGHT
   }
   }
}
}