]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-name-exceptions.ly
Doc-it: fix compile.
[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   lsrtags = "chords"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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 % modify maj9 and 6(add9)
47 % Exception music is chords with markups
48 chExceptionMusic = {
49   <c e g b d'>1-\markup { \super "maj9" }
50   <c e g a d'>1-\markup { \super "6(add9)" }
51 }
52
53 % Convert music to list and prepend to existing exceptions.
54 chExceptions = #( append
55   ( sequential-music-to-chord-exceptions chExceptionMusic #t)
56   ignatzekExceptions)
57
58 theMusic = \chordmode {
59   g1:maj9 g1:6.9
60   \set chordNameExceptions = #chExceptions
61   g1:maj9 g1:6.9
62 }
63
64 \layout {
65   ragged-right = ##t
66 }
67
68 << \context ChordNames \theMusic
69    \context Voice \theMusic
70 >>
71