]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-bar-lines-to-chordnames-context.ly
Doc-fr: update for 2.16.1 (second part)
[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.16.0"
8
9 \header {
10   lsrtags = "chords, specific-notation"
11
12   texidoc = "
13 To add bar line indications in the @code{ChordNames} context, add the
14 @code{Bar_engraver}.
15
16 "
17   doctitle = "Adding bar lines to ChordNames context"
18 } % begin verbatim
19
20
21 \new ChordNames \with {
22   \override BarLine #'bar-extent = #'(-2 . 2)
23   \consists "Bar_engraver"
24 }
25 \chordmode {
26   f1:maj7 f:7 bes:7
27 }