]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-bar-lines-to-chordnames-context.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond into lilypond/translation
[lilypond.git] / Documentation / snippets / adding-bar-lines-to-chordnames-context.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.10"
5
6 \header {
7   lsrtags = "chords"
8
9 %% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971
10   texidoces = "
11 Para añadir indicaciones de línea divisoria dentro del contexto de
12 los nombres de acorde @code{ChordNames}, incluya el grabador
13 @code{Bar_engraver}.
14
15 "
16   doctitlees = "Añadir barras de compás al contexto de nombres de acorde (ChordNames)"
17
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19   texidocde = "
20 Um Taktstriche in einem @code{ChordNames}-Kontext anzeigen zu lassen, muss der
21 @code{Bar_engraver} hinzugefügt werden.
22
23 "
24   doctitlede = "Tatkstriche in einen ChordNames-Kontext hinzufügen"
25
26   texidoc = "
27 To add bar line indications in the @code{ChordNames} context, add the
28 @code{Bar_engraver}.
29
30 "
31   doctitle = "Adding bar lines to ChordNames context"
32 } % begin verbatim
33
34 \new ChordNames \with {
35   \override BarLine #'bar-size = #4
36   \consists "Bar_engraver"
37 }
38 \chordmode {
39   f1:maj7 f:7 bes:7
40 }
41
42