]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes,-lyrics,-and-chords.ly
f8a24165d5442e77c755c0cb6425017fb0ebcd44
[lilypond.git] / Documentation / snippets / single-staff-template-with-notes,-lyrics,-and-chords.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "vocal-music, chords, template"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   texidoces = "
11 Esta plantilla facilita la preparación de una canción con melodía,
12 letra y acordes.
13
14 "
15   doctitlees = "Plantilla de pentagrama único con música letra y acordes"
16
17 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
18   texidocja = "
19 これは旋律、単語、コードを持つ歌曲の楽譜のためのテンプレートです。
20 "
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22   texidocde = "
23 Mit diesem Beispiel können Sie einen Song mit Melodie,
24 Text und Akkorden schreiben.
25 "
26
27   doctitlede = "Vorlage für eine Notenzeile mit Noten Text und Akkorden"
28
29 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
30   texidocfr = "
31 Ce cannevas comporte tous les éléments d'une chanson : la mélodie,
32 les paroles, les accords.
33
34 "
35   doctitlefr = "Paroles musique et accords"
36
37   texidoc = "
38 This template allows the preparation of a song with melody, words, and
39 chords.
40
41 "
42   doctitle = "Single staff template with notes lyrics and chords"
43 } % begin verbatim
44
45 melody = \relative c' {
46   \clef treble
47   \key c \major
48   \time 4/4
49
50   a4 b c d
51 }
52
53 text = \lyricmode {
54   Aaa Bee Cee Dee
55 }
56
57 harmonies = \chordmode {
58   a2 c
59 }
60
61 \score {
62   <<
63     \new ChordNames {
64       \set chordChanges = ##t
65       \harmonies
66     }
67     \new Voice = "one" { \autoBeamOff \melody }
68     \new Lyrics \lyricsto "one" \text
69   >>
70   \layout { }
71   \midi { }
72 }
73