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