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