]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/chord-name-exceptions.ly
Merge branch 'master' of ssh://jneem@git.sv.gnu.org/srv/git/lilypond into tmp
[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.64"
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
24 % modify maj9 and 6(add9)
25 % Exception music is chords with markups
26 chExceptionMusic = {
27   <c e g b d'>1-\markup { \super "maj9" }
28   <c e g a d'>1-\markup { \super "6(add9)" }
29 }
30
31 % Convert music to list and prepend to existing exceptions.
32 chExceptions = #( append
33   ( sequential-music-to-chord-exceptions chExceptionMusic #t)
34   ignatzekExceptions)
35
36 theMusic = \chordmode {
37   g1:maj9 g1:6.9
38   \set chordNameExceptions = #chExceptions
39   g1:maj9 g1:6.9
40 }
41
42 \layout {
43   ragged-right = ##t 
44 }
45
46 << \context ChordNames \theMusic
47    \context Voice \theMusic
48 >>