]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-name-exceptions.ly
Merge branch 'master' of git://git.savannah.gnu.org/lilypond.git
[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: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
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   texidoc = "
31 The property @code{chordNameExceptions} can be used to store a list of
32 special notations for specific chords.
33
34 "
35   doctitle = "Chord name exceptions"
36 } % begin verbatim
37
38 % modify maj9 and 6(add9)
39 % Exception music is chords with markups
40 chExceptionMusic = {
41   <c e g b d'>1-\markup { \super "maj9" }
42   <c e g a d'>1-\markup { \super "6(add9)" }
43 }
44
45 % Convert music to list and prepend to existing exceptions.
46 chExceptions = #( append
47   ( sequential-music-to-chord-exceptions chExceptionMusic #t)
48   ignatzekExceptions)
49
50 theMusic = \chordmode {
51   g1:maj9 g1:6.9
52   \set chordNameExceptions = #chExceptions
53   g1:maj9 g1:6.9
54 }
55
56 \layout {
57   ragged-right = ##t
58 }
59
60 << \context ChordNames \theMusic
61    \context Voice \theMusic
62 >>
63