]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes-and-chords.ly
c200bbebb2c155886bcb5a11284900916573354d
[lilypond.git] / Documentation / snippets / single-staff-template-with-notes-and-chords.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "chords, template"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 ¿Quiere preparar una hoja guía de acordes (o «lead sheet») con
12 melodía y acordes?  ¡No busque más!
13
14 "
15
16 doctitlees = "Plantilla de pentagrama único con música y acordes"
17
18
19 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
20   texidocja = "
21 旋律とコードを持つリード譜を欲しくはありませんか?他を見る必要はありません!
22 "
23
24 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
25   texidocde = "
26 Wollen Sie ein Liedblatt mit Melodie und Akkorden schreiben?  Hier ist
27 das richtige Beispiel für Sie!
28 "
29
30   doctitlede = "Vorlage für eine Notenzeile mit Akkorden"
31
32
33 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
34   texidocfr = "
35 Vous avez besoin de la partition d'une mélodie avec les accords ?
36 N'allez pas plus loin !
37
38 "
39
40 doctitlefr = "Mélodie simple et accords"
41
42   texidoc = "
43 Want to prepare a lead sheet with a melody and chords? Look no further!
44
45
46 "
47   doctitle = "Single staff template with notes and chords"
48 } % begin verbatim
49
50 melody = \relative c' {
51   \clef treble
52   \key c \major
53   \time 4/4
54
55   f4 e8[ c] d4 g
56   a2 ~ a
57 }
58
59 harmonies = \chordmode {
60   c4:m f:min7 g:maj c:aug
61   d2:dim b:sus
62 }
63
64 \score {
65   <<
66     \new ChordNames {
67       \set chordChanges = ##t
68       \harmonies
69     }
70     \new Staff \melody
71   >>
72   \layout{ }
73   \midi { }
74 }
75