]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes-and-chords.ly
56f365ccd7dbf0d2b5ee432ac1f21ec2e625d07f
[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.16"
5
6 \header {
7   lsrtags = "chords, template"
8
9 %% Translation of GIT committish: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
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: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
20   texidocja = "
21 旋律とコードを持つリード譜を欲しくはありませんか?他を見る必要はありません!
22 "
23
24 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
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: 9ba35398048fdf1ca8c83679c7c144b1fd48e75b
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