]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-bar-lines-to-chordnames-context.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / adding-bar-lines-to-chordnames-context.ly
index 5b344efb416d66b55806396f6aed43c90565b6f3..e7510216ab4ddde585ba753f84e4eaa571077ed9 100644 (file)
@@ -1,11 +1,15 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% 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.13.1"
+\version "2.14.0"
 
 \header {
   lsrtags = "chords"
 
-%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
+%% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
   texidoces = "
 Para añadir indicaciones de línea divisoria dentro del contexto de
 los nombres de acorde @code{ChordNames}, incluya el grabador
@@ -14,7 +18,8 @@ los nombres de acorde @code{ChordNames}, incluya el grabador
 "
   doctitlees = "Añadir barras de compás al contexto de nombres de acorde (ChordNames)"
 
-%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
+
+%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
   texidocde = "
 Um Taktstriche in einem @code{ChordNames}-Kontext anzeigen zu lassen, muss der
 @code{Bar_engraver} hinzugefügt werden.
@@ -31,11 +36,11 @@ To add bar line indications in the @code{ChordNames} context, add the
 } % begin verbatim
 
 \new ChordNames \with {
-  \override BarLine #'bar-size = #4
+  \override BarLine #'bar-extent = #'(-2 . 2)
   \consists "Bar_engraver"
 }
 \chordmode {
-  f1:maj7 f:7 bes:7 
+  f1:maj7 f:7 bes:7
 }