lilypond-1.1.67
[lilypond.git] / input / just-friends.ly
blobadf51909ba4751974b6a305fc9369b94b14cc9aa
1 \header {
2 filename = "just-friends.ly";
3 title = "Just Friends";
4 description = "Jazz chords example with bar lines";
5 opus = "";
6 source = "mutex@gmd.de";
7 composer = "";
8 enteredby = "jcn";
9 copyright = "Public Domain";
13 In response to
15 Message-Id: <19990206153950.A7474@gil.physik.rwth-aachen.de>
16 Date: Sat, 6 Feb 1999 15:39:50 +0100
17 From: Christoph Kukulies <kuku@gilberto.physik.RWTH-Aachen.DE>
18 Subject: chord bars
20 I was looking out for a FAQ on the www.gmd.de/Misc/Music page but didn't
21 find any so bear with me when asking a FAQ question:
23 I want to generate some sheets that contain only the chords (changes)
24 of a certain tune (Jazz, Real Book, for example), like
26 Just Friends
28 [...]
32 \score{
33 \context ChordNames \chords{
34 \property Score.chordInversion = 1
35 \property Score.barAtLineStart = 1
36 \repeat semi 2 {
37 f1-maj f-maj f-7 bes-7
38 c-maj c-maj es es
39 d-7 g-7 b2-7/fis e-7 a1-7\break
40 d-7 d-7 d-7 g2-7 ges-7
42 f1-maj f1-maj f-7 bes-7
43 c-maj c-maj es es
44 d-7 g-7 b2-7/fis e-7 a1-7\break
45 d-7 d2-7 g-7 c1-6 g2-7 c-7
48 \paper{
49 indent = 0.0\mm;
50 linewidth = 100.0\mm;
51 \translator{
52 \ChordNameContext
53 barAuto = "1";
54 \consists Bar_engraver;
55 \consists "Repeat_engraver";
60 \version "1.1.66";