]> git.donarmstrong.com Git - lilypond.git/blob - input/just-friends.ly
0f404178dd5f27c6e4eb8caace6e6e589d0819c2
[lilypond.git] / input / just-friends.ly
1 \version "1.3.146"
2 \header {
3   filename =    "just-friends.ly"
4   title =       "Just Friends"
5   description = "Jazz chords example with bar lines"
6   opus =        ""
7   source =      "mutex@gmd.de"
8   composer =    ""
9   enteredby =   "jcn"
10   copyright =   "Public Domain"
11 }
12
13 %{
14 In response to
15
16 Message-Id: <19990206153950.A7474@gil.physik.rwth-aachen.de>
17 Date: Sat, 6 Feb 1999 15:39:50 +0100
18 From: Christoph Kukulies <kuku@gilberto.physik.RWTH-Aachen.DE>
19 Subject: chord bars
20
21 I was looking out for a FAQ on the www.gmd.de/Misc/Music page but didn't
22 find any so bear with me when asking a FAQ question:
23
24 I want to generate some sheets that contain only the chords (changes)
25 of a certain tune (Jazz, Real Book, for example), like
26
27               Just Friends
28
29 [...]
30
31 %}
32
33 \score{
34         \context ChordNames \chords{
35                 \property Score.barAtLineStart = 1
36                 \repeat volta 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
41
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
46                 }
47         }
48         \paper{
49                 indent = 0.0\mm
50                 linewidth = 100.0\mm
51                 \translator{
52                         \ChordNamesContext
53                         barNonAuto = ##f
54                         \consists Bar_engraver
55                         \consists "Volta_engraver"
56                 }
57         }
58 }
59
60