]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/chord-name-exceptions.ly
LSR->docs update
[lilypond.git] / input / lsr / chord-name-exceptions.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.35"
4
5 \header {
6   lsrtags = "chords"
7  texidoc = "
8 The property @code{chordNameExceptions} can used to store a list of
9 special notations for specific chords. 
10 " }
11 % begin verbatim
12 % 7sus4 denoted with ^7 wahh
13 chExceptionMusic = {
14   <c f g bes>1-\markup { \super "7" "wahh" }
15 }
16
17 % add to existing exceptions.
18 chExceptions = #(append
19   (sequential-music-to-chord-exceptions chExceptionMusic #t)
20   ignatzekExceptions)
21
22 theMusic = \chordmode {
23   c:7sus4 c:dim7/+f
24   \set chordNameExceptions = #chExceptions
25   c:7sus4 c:dim7/+f
26 }
27
28 \layout {
29   ragged-right = ##t 
30 }
31
32 << \context ChordNames \theMusic
33    \context Voice \theMusic
34 >>  
35