]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-chord-separator.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / changing-chord-separator.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"
11
12   texidoc = "
13 The separator between different parts of a chord name can be set to any
14 markup.
15
16 "
17   doctitle = "Changing chord separator"
18 } % begin verbatim
19
20
21 \chords {
22   c:7sus4
23   \set chordNameSeparator
24     = \markup { \typewriter | }
25   c:7sus4
26 }