]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes-and-chords.ly
dec867796ca4b4c454a2600321b85b78d84519d4
[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: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
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 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
19   texidocja = "
20 旋律とコードを持つリード譜を欲しくはありませんか?他を見る必要はありません!
21 "
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Wollen Sie ein Liedblatt mit Melodie und Akkorden schreiben?  Hier ist
25 das richtige Beispiel für Sie!
26 "
27
28   doctitlede = "Vorlage für eine Notenzeile mit Akkorden"
29
30 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
31   texidocfr = "
32 Vous avez besoin de la partition d'une mélodie avec les accords ?
33 N'allez pas plus loin !
34
35 "
36
37 doctitlefr = "Mélodie simple et accords"
38
39   texidoc = "
40 Want to prepare a lead sheet with a melody and chords? Look no further!
41
42
43 "
44   doctitle = "Single staff template with notes and chords"
45 } % begin verbatim
46
47 melody = \relative c' {
48   \clef treble
49   \key c \major
50   \time 4/4
51
52   f4 e8[ c] d4 g
53   a2 ~ a
54 }
55
56 harmonies = \chordmode {
57   c4:m f:min7 g:maj c:aug
58   d2:dim b:sus
59 }
60
61 \score {
62   <<
63     \new ChordNames {
64       \set chordChanges = ##t
65       \harmonies
66     }
67     \new Staff \melody
68   >>
69   \layout{ }
70   \midi { }
71 }
72