]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-bar-lines-to-chordnames-context.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "chords"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20   texidocde = "
21 Um Taktstriche in einem @code{ChordNames}-Kontext anzeigen zu lassen, muss der
22 @code{Bar_engraver} hinzugefügt werden.
23
24 "
25   doctitlede = "Tatkstriche in einen ChordNames-Kontext hinzufügen"
26
27   texidoc = "
28 To add bar line indications in the @code{ChordNames} context, add the
29 @code{Bar_engraver}.
30
31 "
32   doctitle = "Adding bar lines to ChordNames context"
33 } % begin verbatim
34
35 \new ChordNames \with {
36   \override BarLine #'bar-size = #4
37   \consists "Bar_engraver"
38 }
39 \chordmode {
40   f1:maj7 f:7 bes:7
41 }
42
43