]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes-and-chords.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / single-staff-template-with-notes-and-chords.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6 %% Translation of GIT committish: 9ba35398048fdf1ca8c83679c7c144b1fd48e75b
7   texidocfr = "
8 Vous avez besoin de la partition d'une mélodie avec les accords ?  
9 N'allez pas plus loin !
10
11 "
12
13 doctitlefr = "Mélodie simple et accords"
14
15   lsrtags = "chords, template"
16
17 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
18   texidoces = "
19 ¿Quiere preparar una hoja guía de acordes (o «lead sheet») con
20 melodía y acordes?  ¡No busque más!
21
22 "
23
24 doctitlees = "Plantilla de pentagrama único con música y acordes"
25
26 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
27   texidocde = "
28 Wollen Sie ein Liedblatt mit Melodie und Akkorden schreiben?  Hier ist 
29 das richtige Beispiel für Sie!
30 "
31
32   doctitlede = "Vorlage für eine Notenzeile mit Akkorden"
33
34 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
35   texidocja = "
36 旋律とコードを持つリード譜を欲しくはありませんか?他を見る必要はありません!
37 "
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