]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-bar-lines-to-chordnames-context.ly
Merge branch 'stable/2.16' into staging
[lilypond.git] / Documentation / snippets / adding-bar-lines-to-chordnames-context.ly
index 6c481e933c31d1bd56c7e6d61669dc957e0e983b..27d3823480d9ed3652951f5fd53236c6a31389ac 100644 (file)
@@ -1,28 +1,13 @@
-%% Do not edit this file; it is automatically
+%% 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.12.2"
+\version "2.16.0"
 
 \header {
-  lsrtags = "chords"
-
-%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
-  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"
+  lsrtags = "chords, specific-notation"
 
   texidoc = "
 To add bar line indications in the @code{ChordNames} context, add the
@@ -32,12 +17,11 @@ To add bar line indications in the @code{ChordNames} context, add the
   doctitle = "Adding bar lines to ChordNames context"
 } % 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
 }
-
-