]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-bar-lines-to-chordnames-context.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / adding-bar-lines-to-chordnames-context.ly
index 8840e702daf47f7363fd70014de825995d94bac7..ee14a8aff5b52dfef57e7abfda0c4549e378ac4a 100644 (file)
@@ -4,28 +4,10 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.13.51"
+\version "2.17.6"
 
 \header {
-  lsrtags = "chords"
-
-%% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec
-  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
@@ -35,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-extent = #'(-2 . 2)
+  \override BarLine.bar-extent = #'(-2 . 2)
   \consists "Bar_engraver"
 }
 \chordmode {
   f1:maj7 f:7 bes:7
 }
-
-