From: Valentin Villenave Date: Wed, 9 Jun 2010 10:37:12 +0000 (+0200) Subject: Add documentation and regtest for lowercase minor chords feature. X-Git-Tag: release/2.13.24-1~25 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ec64184cf863f8565cfedd6dfe91198ce843526e;p=lilypond.git Add documentation and regtest for lowercase minor chords feature. A new regtest demonstrates the feature, and a few lines as well as an example have been added in the relevant NR chapter. --- diff --git a/Documentation/notation/chords.itely b/Documentation/notation/chords.itely index a95b74253b..a5d76b4822 100644 --- a/Documentation/notation/chords.itely +++ b/Documentation/notation/chords.itely @@ -575,6 +575,20 @@ The effect is demonstrated here: @lilypondfile[ragged-right]{chord-names-languages.ly} + +@funindex chordNameLowercaseMinor + +German songbooks may indicate minor chords as lowercase letters, +without any @var{m} suffix. This can be obtained by setting the +@code{chordNameLowercaseMinor} property: + +@lilypond[verbatim,quote,ragged-right, relative=1] +\chords { + \set chordNameLowercaseMinor = ##t + c2 d:m e:m f +} +@end lilypond + If none of the existing settings give the desired output, the chord name display can be tuned through the following properties. diff --git a/input/regression/chord-names-lower-case-minor.ly b/input/regression/chord-names-lower-case-minor.ly new file mode 100644 index 0000000000..1401abe174 --- /dev/null +++ b/input/regression/chord-names-lower-case-minor.ly @@ -0,0 +1,15 @@ +\version "2.13.22" + +\header { + + texidoc = "Minor chords may be printed as lowercase letters, + in which case the `m' suffix is omitted in the output." + +} + + +\chords { + d:m + \set chordNameLowercaseMinor = ##t + d:m +}