]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-bar-lines-to-chordnames-context.ly
9548cf1a38446bb5a7c4c01aaefa6b3f66bb632a
[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.16"
5
6 \header {
7   lsrtags = "chords"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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