]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes-and-chords.ly
Doc [nl]: Translation update.
[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: 615cbf212fdaf0b220b3330da417d0c3602494f2
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: 0a868be38a775ecb1ef935b079000cebbc64de40
28   texidocde = "
29 Wollen Sie ein Liedblatt mit Melodie und Akkorden schreiben?  Hier ist
30 das richtige Beispiel für Sie!
31 "
32
33   doctitlede = "Vorlage für eine Notenzeile mit Akkorden"
34
35
36 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
37   texidocfr = "
38 Vous avez besoin de la partition d'une mélodie avec les accords ?
39 N'allez pas plus loin !
40
41 "
42
43 doctitlefr = "Mélodie simple et accords"
44
45   texidoc = "
46 Want to prepare a lead sheet with a melody and chords? Look no further!
47
48
49 "
50   doctitle = "Single staff template with notes and chords"
51 } % begin verbatim
52
53 melody = \relative c' {
54   \clef treble
55   \key c \major
56   \time 4/4
57
58   f4 e8[ c] d4 g
59   a2 ~ a
60 }
61
62 harmonies = \chordmode {
63   c4:m f:min7 g:maj c:aug
64   d2:dim b:sus
65 }
66
67 \score {
68   <<
69     \new ChordNames {
70       \set chordChanges = ##t
71       \harmonies
72     }
73     \new Staff \melody
74   >>
75   \layout{ }
76   \midi { }
77 }
78