]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-bar-lines-to-chordnames-context.ly
resolve merge
[lilypond.git] / Documentation / snippets / adding-bar-lines-to-chordnames-context.ly
diff --git a/Documentation/snippets/adding-bar-lines-to-chordnames-context.ly b/Documentation/snippets/adding-bar-lines-to-chordnames-context.ly
new file mode 100644 (file)
index 0000000..89473c6
--- /dev/null
@@ -0,0 +1,46 @@
+%% 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 = "
+Para añadir indicaciones de línea divisoria dentro del contexto de
+los nombres de acorde @code{ChordNames}, incluya el grabador
+@code{Bar_engraver}.
+
+"
+  doctitlees = "Añadir barras de compás al contexto de nombres de acorde (ChordNames)"
+
+
+%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
+  texidocde = "
+Um Taktstriche in einem @code{ChordNames}-Kontext anzeigen zu lassen, muss der
+@code{Bar_engraver} hinzugefügt werden.
+
+"
+  doctitlede = "Tatkstriche in einen ChordNames-Kontext hinzufügen"
+
+  texidoc = "
+To add bar line indications in the @code{ChordNames} context, add the
+@code{Bar_engraver}.
+
+"
+  doctitle = "Adding bar lines to ChordNames context"
+} % begin verbatim
+
+\new ChordNames \with {
+  \override BarLine #'bar-extent = #'(-2 . 2)
+  \consists "Bar_engraver"
+}
+\chordmode {
+  f1:maj7 f:7 bes:7
+}
+
+