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