]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chordchanges-for-fretboards.ly
Add '-dcrop' option to ps and svg backends
[lilypond.git] / Documentation / snippets / chordchanges-for-fretboards.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 = "fretted-strings"
11
12   texidoc = "
13 FretBoards can be set to display only when the chord changes or at the
14 beginning of a new line.
15
16 "
17   doctitle = "ChordChanges for FretBoards"
18 } % begin verbatim
19
20 \include "predefined-guitar-fretboards.ly"
21
22 myChords = \chordmode {
23   c1 c1 \break
24   \set chordChanges = ##t
25   c1 c1 \break
26   c1 c1
27 }
28
29 <<
30   \new ChordNames { \myChords }
31   \new FretBoards { \myChords }
32   \new Staff { \myChords }
33 >>