]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-bar-lines-to-chordnames-context.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / input / lsr / adding-bar-lines-to-chordnames-context.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.48"
4
5 \header {
6   lsrtags = "chords"
7
8   texidoc = "
9 To add bar line indications in the @code{ChordNames} context, add the
10 @code{Bar_engraver}.
11
12 "
13   doctitle = "Adding bar lines to ChordNames context"
14 } % begin verbatim
15 \new ChordNames \with {
16   \override BarLine #'bar-size = #4
17   \consists "Bar_engraver"
18 }
19 \chordmode {
20   f1:maj7 f:7 bes:7 
21 }
22