]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-name-exceptions.ly
Merge branch 'master' into lilypond/translation
[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 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
26   texidoces = "
27 Se puede usar la propiedad @code{chordNameExceptions} para
28 almacenar una lista de notaciones espaciales para acordes
29 específicos.
30
31 "
32   doctitlees = "Excepciones para los nombres de acorde"
33
34
35 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
36   texidocde = "
37 Die Eigenschaft @code{chordNameExceptions} kann benutzt werden, um eine
38 Liste an besonderen Notationen für bestimmte Akkorde zu speichern.
39
40 "
41   doctitlede = "Akkordsymbolausnahmen"
42
43   texidoc = "
44 The property @code{chordNameExceptions} can be used to store a list of
45 special notations for specific chords.
46
47 "
48   doctitle = "Chord name exceptions"
49 } % begin verbatim
50
51 % modify maj9 and 6(add9)
52 % Exception music is chords with markups
53 chExceptionMusic = {
54   <c e g b d'>1-\markup { \super "maj9" }
55   <c e g a d'>1-\markup { \super "6(add9)" }
56 }
57
58 % Convert music to list and prepend to existing exceptions.
59 chExceptions = #( append
60   ( sequential-music-to-chord-exceptions chExceptionMusic #t)
61   ignatzekExceptions)
62
63 theMusic = \chordmode {
64   g1:maj9 g1:6.9
65   \set chordNameExceptions = #chExceptions
66   g1:maj9 g1:6.9
67 }
68
69 \layout {
70   ragged-right = ##t
71 }
72
73 << \context ChordNames \theMusic
74    \context Voice \theMusic
75 >>
76