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