X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fshowing-chords-at-changes.ly;fp=Documentation%2Fsnippets%2Fshowing-chords-at-changes.ly;h=80aa7049614451c8d468bad5830f27b53bded566;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=0000000000000000000000000000000000000000;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git diff --git a/Documentation/snippets/showing-chords-at-changes.ly b/Documentation/snippets/showing-chords-at-changes.ly new file mode 100644 index 0000000000..80aa704961 --- /dev/null +++ b/Documentation/snippets/showing-chords-at-changes.ly @@ -0,0 +1,49 @@ +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% +%% This file is in the public domain. +\version "2.14.0" + +\header { + lsrtags = "chords" + +%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c + texidoces = " +Se pueden imprimir los acordes exclusivamente al comienzo de las +líneas y cuando cambia el acorde. + +" + doctitlees = "Imprimir los acordes cuando se produce un cambio" + + +%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 + texidocde = " +Akkordsymbole können so eingestellt werden, dass sie nur zu Beginn der Zeile +und bei Akkordwechseln angezeigt werden. + +" + doctitlede = "Akkordsymbole bei Wechsel anzeigen" + + texidoc = " +Chord names can be displayed only at the start of lines and when the +chord changes. + +" + doctitle = "Showing chords at changes" +} % begin verbatim + +harmonies = \chordmode { + c1:m c:m \break c:m c:m d +} +<< + \new ChordNames { + \set chordChanges = ##t + \harmonies + } + \new Staff { + \relative c' { \harmonies } + } +>> +