]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-name-exceptions.ly
e61cd7b14769a0f655d229bf055af3f43f4da36d
[lilypond.git] / Documentation / snippets / chord-name-exceptions.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "specific-notation, chords"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Se puede usar la propiedad @code{chordNameExceptions} para
15 almacenar una lista de notaciones espaciales para acordes
16 específicos.
17
18 "
19   doctitlees = "Excepciones para los nombres de acorde"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Die Eigenschaft @code{chordNameExceptions} kann benutzt werden, um eine
25 Liste an besonderen Notationen für bestimmte Akkorde zu speichern.
26
27 "
28   doctitlede = "Akkordsymbolausnahmen"
29
30 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
31   texidocfr = "
32 Il est possible de créer votre propre modèle de chiffrages en
33 réglant la propriété @code{chordNameExceptions}.
34
35 "
36   doctitlefr = "Modèles de chiffrage d'accords"
37
38   texidoc = "
39 The property @code{chordNameExceptions} can be used to store a list of
40 special notations for specific chords.
41
42 "
43   doctitle = "Chord name exceptions"
44 } % begin verbatim
45
46
47 % modify maj9 and 6(add9)
48 % Exception music is chords with markups
49 chExceptionMusic = {
50   <c e g b d'>1-\markup { \super "maj9" }
51   <c e g a d'>1-\markup { \super "6(add9)" }
52 }
53
54 % Convert music to list and prepend to existing exceptions.
55 chExceptions = #( append
56   ( sequential-music-to-chord-exceptions chExceptionMusic #t)
57   ignatzekExceptions)
58
59 theMusic = \chordmode {
60   g1:maj9 g1:6.9
61   \set chordNameExceptions = #chExceptions
62   g1:maj9 g1:6.9
63 }
64
65 \layout {
66   ragged-right = ##t
67 }
68
69 << \context ChordNames \theMusic
70    \context Voice \theMusic
71 >>
72