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