]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes,-lyrics,-and-chords.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / single-staff-template-with-notes,-lyrics,-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 Ecco il modello di un comune spartito semplificato (lead sheet): include
13 linea melodica, testo vocale, sigle degli accordi e relativi diagrammi
14 per chitarra.
15
16 "
17   doctitleit = "Modello di rigo singolo con note testo accordi e tasti"
18
19   lsrtags = "vocal-music, chords, template"
20
21
22
23
24 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
25   texidoces = "
26 Esta plantilla facilita la preparación de una canción con melodía,
27 letra y acordes.
28
29 "
30   doctitlees = "Plantilla de pentagrama único con música letra y acordes"
31
32
33 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
34   texidocja = "
35 これは旋律、単語、コードを持つ歌曲の楽譜のためのテンプレートです。
36 "
37
38 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
39   texidocde = "
40 Mit diesem Beispiel können Sie einen Song mit Melodie,
41 Text und Akkorden schreiben.
42 "
43
44   doctitlede = "Vorlage für eine Notenzeile mit Noten Text und Akkorden"
45
46
47 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
48   texidocfr = "
49 Ce cannevas comporte tous les éléments d'une chanson : la mélodie,
50 les paroles, les accords.
51
52 "
53   doctitlefr = "Paroles musique et accords"
54
55   texidoc = "
56 This template allows the preparation of a song with melody, words, and
57 chords.
58
59 "
60   doctitle = "Single staff template with notes lyrics and chords"
61 } % begin verbatim
62
63 melody = \relative c' {
64   \clef treble
65   \key c \major
66   \time 4/4
67
68   a4 b c d
69 }
70
71 text = \lyricmode {
72   Aaa Bee Cee Dee
73 }
74
75 harmonies = \chordmode {
76   a2 c
77 }
78
79 \score {
80   <<
81     \new ChordNames {
82       \set chordChanges = ##t
83       \harmonies
84     }
85     \new Voice = "one" { \autoBeamOff \melody }
86     \new Lyrics \lyricsto "one" \text
87   >>
88   \layout { }
89   \midi { }
90 }
91