]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/chord-name-exceptions.ly
Merge branch 'dev/texi2html' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond into...
[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.38"
4
5 \header {
6   lsrtags = "chords"
7
8   texidoc = "
9 The property @code{chordNameExceptions} can used to store a list of
10 special notations for specific chords. 
11
12 "
13   doctitle = "Chord name exceptions"
14 } % begin verbatim
15 % 7sus4 denoted with ^7 wahh
16 chExceptionMusic = {
17   <c f g bes>1-\markup { \super "7" "wahh" }
18 }
19
20 % add to existing exceptions.
21 chExceptions = #(append
22   (sequential-music-to-chord-exceptions chExceptionMusic #t)
23   ignatzekExceptions)
24
25 theMusic = \chordmode {
26   c:7sus4 c:dim7/+f
27   \set chordNameExceptions = #chExceptions
28   c:7sus4 c:dim7/+f
29 }
30
31 \layout {
32   ragged-right = ##t 
33 }
34
35 << \context ChordNames \theMusic
36    \context Voice \theMusic
37 >>  
38