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