]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes-and-chords.ly
Merge branch 'release/unstable'
[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   lsrtags = "chords, template"
11
12 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
13   texidoces = "
14 ¿Quiere preparar una hoja guía de acordes (o «lead sheet») con
15 melodía y acordes?  ¡No busque más!
16
17 "
18
19 doctitlees = "Plantilla de pentagrama único con música y acordes"
20
21
22 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
23   texidocja = "
24 旋律とコードを持つリード譜を欲しくはありませんか?他を見る必要はありません!
25 "
26
27 %% Translation of GIT committish: 514674cb00c18629242dfcde0c1a4976758adc56
28   texidocit = "
29 Vuoi preparare uno spartito semplificato (lead sheet) con melodia e
30 accordi?  La tua ricerca è finita!
31
32 "
33   doctitleit = "Modello di rigo singolo con note e accordi"
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