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