]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-bar-lines-to-chordnames-context.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[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.di.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.18.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 \new ChordNames \with {
21   \override BarLine.bar-extent = #'(-2 . 2)
22   \consists "Bar_engraver"
23 }
24
25 \chordmode {
26   f1:maj7 f:7 bes:7
27 }