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