]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-bar-lines-to-chordnames-context.ly
Merge branch 'master' into lilypond/translation
[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 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
26   texidoces = "
27 Para añadir indicaciones de línea divisoria dentro del contexto de
28 los nombres de acorde @code{ChordNames}, incluya el grabador
29 @code{Bar_engraver}.
30
31 "
32   doctitlees = "Añadir barras de compás al contexto de nombres de acorde (ChordNames)"
33
34
35 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
36   texidocde = "
37 Um Taktstriche in einem @code{ChordNames}-Kontext anzeigen zu lassen, muss der
38 @code{Bar_engraver} hinzugefügt werden.
39
40 "
41   doctitlede = "Tatkstriche in einen ChordNames-Kontext hinzufügen"
42
43   texidoc = "
44 To add bar line indications in the @code{ChordNames} context, add the
45 @code{Bar_engraver}.
46
47 "
48   doctitle = "Adding bar lines to ChordNames context"
49 } % begin verbatim
50
51 \new ChordNames \with {
52   \override BarLine #'bar-extent = #'(-2 . 2)
53   \consists "Bar_engraver"
54 }
55 \chordmode {
56   f1:maj7 f:7 bes:7
57 }
58
59