]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/chord-name-exceptions.ly
f5d15068b76ff6fffb07d9fb133ad41582454dcb
[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.13.1"
4
5 \header {
6   lsrtags = "chords"
7
8 %% Translation of GIT committish: 7e2910d2bc6167b10cfe328eb17a5f710f2a515a
9   texidoces = "
10 Se puede usar la propiedad @code{chordNameExceptions} para
11 almacenar una lista de notaciones espaciales para acordes
12 específicos.
13
14 "
15   doctitlees = "Excepciones para los nombres de acorde"
16
17 %% Translation of GIT committish: 33f623301a41fcc53efadf96bca1c72834763415
18   texidocde = "
19 Die Eigenschaft @code{chordNameExceptions} kann benutzt werden, um eine
20 Liste an besonderen Notationen für bestimmte Akkorde zu speichern.
21
22 "
23   doctitlede = "Akkordsymbolausnahmen"
24
25   texidoc = "
26 The property @code{chordNameExceptions} can be used to store a list of
27 special notations for specific chords. 
28
29 "
30   doctitle = "Chord name exceptions"
31 } % begin verbatim
32
33 % modify maj9 and 6(add9)
34 % Exception music is chords with markups
35 chExceptionMusic = {
36   <c e g b d'>1-\markup { \super "maj9" }
37   <c e g a d'>1-\markup { \super "6(add9)" }
38 }
39
40 % Convert music to list and prepend to existing exceptions.
41 chExceptions = #( append
42   ( sequential-music-to-chord-exceptions chExceptionMusic #t)
43   ignatzekExceptions)
44
45 theMusic = \chordmode {
46   g1:maj9 g1:6.9
47   \set chordNameExceptions = #chExceptions
48   g1:maj9 g1:6.9
49 }
50
51 \layout {
52   ragged-right = ##t 
53 }
54
55 << \context ChordNames \theMusic
56    \context Voice \theMusic
57 >>  
58