]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/chord-name-exceptions.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "chords"
7
8   texidoces = "
9 Se puede usar la propiedad @code{chordNameExceptions} para
10 almacenar una lista de notaciones espaciales para acordes
11 específicos.
12
13 "
14   doctitlees = "Excepciones para los nombres de acorde"
15
16   texidoc = "
17 The property @code{chordNameExceptions} can be used to store a list of
18 special notations for specific chords. 
19
20 "
21   doctitle = "Chord name exceptions"
22 } % begin verbatim
23 % modify maj9 and 6(add9)
24 % Exception music is chords with markups
25 chExceptionMusic = {
26   <c e g b d'>1-\markup { \super "maj9" }
27   <c e g a d'>1-\markup { \super "6(add9)" }
28 }
29
30 % Convert music to list and prepend to existing exceptions.
31 chExceptions = #( append
32   ( sequential-music-to-chord-exceptions chExceptionMusic #t)
33   ignatzekExceptions)
34
35 theMusic = \chordmode {
36   g1:maj9 g1:6.9
37   \set chordNameExceptions = #chExceptions
38   g1:maj9 g1:6.9
39 }
40
41 \layout {
42   ragged-right = ##t 
43 }
44
45 << \context ChordNames \theMusic
46    \context Voice \theMusic
47 >>