Markup command name changes.
[lilypond.git] / input / lsr / chord-name-exceptions.ly
blob87e9500815ba00a8a083b5ec2f1fd16337f5c783
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.57"
5 \header {
6 lsrtags = "chords"
8 texidoces = "
9 Se puede usar la propiedad @code{chordNameExceptions} para
10 almacenar una lista de notaciones espaciales para acordes
11 específicos.
14 doctitlees = "Excepciones para los nombres de acorde"
16 texidoc = "
17 The property @code{chordNameExceptions} can be used to store a list of
18 special notations for specific chords.
21 doctitle = "Chord name exceptions"
22 } % begin verbatim
23 % modify maj9 and 6(add9)
24 % Exception music is chords with markups
25 chExceptionMusic = {
26 <c e g b d'>1-\markup { \super "maj9" }
27 <c e g a d'>1-\markup { \super "6(add9)" }
30 % Convert music to list and prepend to existing exceptions.
31 chExceptions = #( append
32 ( sequential-music-to-chord-exceptions chExceptionMusic #t)
33 ignatzekExceptions)
35 theMusic = \chordmode {
36 g1:maj9 g1:6.9
37 \set chordNameExceptions = #chExceptions
38 g1:maj9 g1:6.9
41 \layout {
42 ragged-right = ##t
45 << \context ChordNames \theMusic
46 \context Voice \theMusic
47 >>