LSR: Local update.
[lilypond/mpolesky.git] / Documentation / snippets / chord-name-exceptions.ly
blobe45c50117bb6f1b3cde7b408f84f27d04ab73281
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.10"
6 \header {
7 lsrtags = "chords"
9 %% Translation of GIT committish: 341940d3830b59f93a80131471d622c2818afddb
10 texidoces = "
11 Se puede usar la propiedad @code{chordNameExceptions} para
12 almacenar una lista de notaciones espaciales para acordes
13 específicos.
16 doctitlees = "Excepciones para los nombres de acorde"
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19 texidocde = "
20 Die Eigenschaft @code{chordNameExceptions} kann benutzt werden, um eine
21 Liste an besonderen Notationen für bestimmte Akkorde zu speichern.
24 doctitlede = "Akkordsymbolausnahmen"
26 texidoc = "
27 The property @code{chordNameExceptions} can be used to store a list of
28 special notations for specific chords.
31 doctitle = "Chord name exceptions"
32 } % begin verbatim
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)" }
41 % Convert music to list and prepend to existing exceptions.
42 chExceptions = #( append
43 ( sequential-music-to-chord-exceptions chExceptionMusic #t)
44 ignatzekExceptions)
46 theMusic = \chordmode {
47 g1:maj9 g1:6.9
48 \set chordNameExceptions = #chExceptions
49 g1:maj9 g1:6.9
52 \layout {
53 ragged-right = ##t
56 << \context ChordNames \theMusic
57 \context Voice \theMusic