lilypond-1.3.124
[lilypond.git] / input / just-friends.ly
blob0f4082a2d8d7c8cc68489bf4a26b7ae820ce6a6d
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.barAtLineStart = 1
35 \repeat semi 2 {
36 f1:maj f:maj f:7 bes:7
37 c:maj c:maj es es
38 d:7 g:7 b2:7/fis e:7 a1:7\break
39 d:7 d:7 d:7 g2:7 ges:7
41 f1:maj f1:maj f:7 bes:7
42 c:maj c:maj es es
43 d:7 g:7 b2:7/fis e:7 a1:7\break
44 d:7 d2:7 g:7 c1:6 g2:7 c:7
47 \paper{
48 indent = 0.0\mm;
49 linewidth = 100.0\mm;
50 \translator{
51 \ChordNamesContext
52 barAuto = "1";
53 \consists Bar_engraver;
54 \consists "Repeat_engraver";
59 \version "1.3.117";