]> git.donarmstrong.com Git - lilypond.git/blob - input/just-friends.ly
patch::: 1.3.134.jcn1
[lilypond.git] / input / just-friends.ly
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";
10 }
11
12 %{
13 In response to
14
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
19
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:
22
23 I want to generate some sheets that contain only the chords (changes)
24 of a certain tune (Jazz, Real Book, for example), like
25
26               Just Friends
27
28 [...]
29
30 %}
31
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
40
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
45                 }
46         }
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";
55                 }
56         }
57 }
58
59