Display non-English chord names: Difference between revisions

m Remove the ‘official’ tag – almost exactly the same code is present in the Notation Reference, being too important to be moved into a snippet.
 
(2 intermediate revisions by the same user not shown)
Line 3: Line 3:
<lilypond version="2.24">
<lilypond version="2.24">
scm = \chordmode {
scm = \chordmode {
   c1/c | cis/cis
   d1/d | cis/cis
   b1/b | bis/bis | bes/bes
   b1/b | bis/bis | bes/bes
}  
}  
Line 28: Line 28:
   }
   }
   \new ChordNames {
   \new ChordNames {
     \set instrumentName = #"german"
     \set instrumentName = #"German"
     \germanChords \scm
     \germanChords \scm
   }
   }
   \new ChordNames {
   \new ChordNames {
     \set instrumentName = #"semi-german"
     \set instrumentName = #"semi-German"
     \semiGermanChords \scm
     \semiGermanChords \scm
   }
   }
   \new ChordNames {
   \new ChordNames {
     \set instrumentName = #"italian"
     \set instrumentName = #"Italian"
     \italianChords \scm
     \italianChords \scm
   }
   }
   \new ChordNames {
   \new ChordNames {
     \set instrumentName = #"french"
     \set instrumentName = #"French"
     \frenchChords \scm
     \frenchChords \scm
   }
   }
Line 49: Line 49:
[[Category:Chords]]
[[Category:Chords]]
[[Category:Really simple]]
[[Category:Really simple]]
[[Category:Included in the official documentation]]
[[Category:Snippet]]
[[Category:Snippet]]