]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-bar-lines-to-chordnames-context.ly
c7635cdb13c278d24ea65f701e4272b71b986121
[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.2"
8
9 \header {
10   lsrtags = "specific-notation, chords"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
31   texidocfr = "
32 L'ajout du graveur @code{Bar_engraver} à un contexte @code{ChordNames}
33 permet d'imprimer les barres de mesure entre les chiffrages.
34
35 "
36   doctitlefr = "Chiffrages et barres de mesure"
37
38   texidoc = "
39 To add bar line indications in the @code{ChordNames} context, add the
40 @code{Bar_engraver}.
41
42 "
43   doctitle = "Adding bar lines to ChordNames context"
44 } % begin verbatim
45
46
47 \new ChordNames \with {
48   \override BarLine #'bar-extent = #'(-2 . 2)
49   \consists "Bar_engraver"
50 }
51 \chordmode {
52   f1:maj7 f:7 bes:7
53 }
54
55