]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/simple-lead-sheet.ly
Update snippets from today's LSR with changed makelsr.py
[lilypond.git] / Documentation / snippets / simple-lead-sheet.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.14.2"
8
9 \header {
10   lsrtags = "chords"
11
12   texidoc = "
13 When put together, chord names, a melody, and lyrics form a lead sheet:
14
15 "
16   doctitle = "Simple lead sheet"
17 } % begin verbatim
18
19
20 <<
21   \chords { c2 g:sus4 f e }
22   \relative c'' {
23     a4 e c8 e r4
24     b2 c4( d)
25   }
26   \addlyrics { One day this shall be free __ }
27 >>