]> git.donarmstrong.com Git - lilypond.git/blob - 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
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "chords"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 Para añadir indicaciones de línea divisoria dentro del contexto de
15 los nombres de acorde @code{ChordNames}, incluya el grabador
16 @code{Bar_engraver}.
17
18 "
19   doctitlees = "Añadir barras de compás al contexto de nombres de acorde (ChordNames)"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Um Taktstriche in einem @code{ChordNames}-Kontext anzeigen zu lassen, muss der
25 @code{Bar_engraver} hinzugefügt werden.
26
27 "
28   doctitlede = "Tatkstriche in einen ChordNames-Kontext hinzufügen"
29
30   texidoc = "
31 To add bar line indications in the @code{ChordNames} context, add the
32 @code{Bar_engraver}.
33
34 "
35   doctitle = "Adding bar lines to ChordNames context"
36 } % begin verbatim
37
38 \new ChordNames \with {
39   \override BarLine #'bar-extent = #'(-2 . 2)
40   \consists "Bar_engraver"
41 }
42 \chordmode {
43   f1:maj7 f:7 bes:7
44 }
45
46