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