]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-name-exceptions.ly
Doc: Update LSR.
[lilypond.git] / Documentation / snippets / chord-name-exceptions.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "chords"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
10   texidoces = "
11 Se puede usar la propiedad @code{chordNameExceptions} para
12 almacenar una lista de notaciones espaciales para acordes
13 específicos.
14
15 "
16   doctitlees = "Excepciones para los nombres de acorde"
17
18 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
19   texidocde = "
20 Die Eigenschaft @code{chordNameExceptions} kann benutzt werden, um eine
21 Liste an besonderen Notationen für bestimmte Akkorde zu speichern.
22
23 "
24   doctitlede = "Akkordsymbolausnahmen"
25
26   texidoc = "
27 The property @code{chordNameExceptions} can be used to store a list of
28 special notations for specific chords.
29
30 "
31   doctitle = "Chord name exceptions"
32 } % begin verbatim
33
34 % modify maj9 and 6(add9)
35 % Exception music is chords with markups
36 chExceptionMusic = {
37   <c e g b d'>1-\markup { \super "maj9" }
38   <c e g a d'>1-\markup { \super "6(add9)" }
39 }
40
41 % Convert music to list and prepend to existing exceptions.
42 chExceptions = #( append
43   ( sequential-music-to-chord-exceptions chExceptionMusic #t)
44   ignatzekExceptions)
45
46 theMusic = \chordmode {
47   g1:maj9 g1:6.9
48   \set chordNameExceptions = #chExceptions
49   g1:maj9 g1:6.9
50 }
51
52 \layout {
53   ragged-right = ##t
54 }
55
56 << \context ChordNames \theMusic
57    \context Voice \theMusic
58 >>
59