]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-bar-lines-to-chordnames-context.ly
Update to LSR with local copy
[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.15.20"
8
9 \header {
10 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
11   texidocfr = "
12 L'ajout du graveur @code{Bar_engraver} à un contexte @code{ChordNames}
13 permet d'imprimer les barres de mesure entre les chiffrages.
14
15 "
16   doctitlefr = "Chiffrages et barres de mesure"
17
18   lsrtags = "chords"
19
20
21
22
23
24
25
26 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
27   texidoces = "
28 Para añadir indicaciones de línea divisoria dentro del contexto de
29 los nombres de acorde @code{ChordNames}, incluya el grabador
30 @code{Bar_engraver}.
31
32 "
33   doctitlees = "Añadir barras de compás al contexto de nombres de acorde (ChordNames)"
34
35
36 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
37   texidocde = "
38 Um Taktstriche in einem @code{ChordNames}-Kontext anzeigen zu lassen, muss der
39 @code{Bar_engraver} hinzugefügt werden.
40
41 "
42   doctitlede = "Tatkstriche in einen ChordNames-Kontext hinzufügen"
43
44   texidoc = "
45 To add bar line indications in the @code{ChordNames} context, add the
46 @code{Bar_engraver}.
47
48 "
49   doctitle = "Adding bar lines to ChordNames context"
50 } % begin verbatim
51
52 \new ChordNames \with {
53   \override BarLine #'bar-extent = #'(-2 . 2)
54   \consists "Bar_engraver"
55 }
56 \chordmode {
57   f1:maj7 f:7 bes:7
58 }
59
60