]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes-and-chords.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "template, chords, really-simple"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
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: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
45   texidocfr = "
46 Vous avez besoin de la partition d'une mélodie avec les accords@tie{}?
47 N'allez pas plus loin@tie{}!
48
49 "
50   doctitlefr = "Mélodie simple et accords"
51
52   texidoc = "
53 Want to prepare a lead sheet with a melody and chords? Look no further!
54
55
56 "
57   doctitle = "Single staff template with notes and chords"
58 } % begin verbatim
59
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