]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes,-lyrics,-and-chords.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "vocal-music, chords, template"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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
18 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
19   texidocja = "
20 これは旋律、単語、コードを持つ歌曲の楽譜のためのテンプレートです。
21 "
22
23 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
24   texidocde = "
25 Mit diesem Beispiel können Sie einen Song mit Melodie,
26 Text und Akkorden schreiben.
27 "
28
29   doctitlede = "Vorlage für eine Notenzeile mit Noten Text und Akkorden"
30
31
32 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
33   texidocfr = "
34 Ce cannevas comporte tous les éléments d'une chanson : la mélodie,
35 les paroles, les accords.
36
37 "
38   doctitlefr = "Paroles musique et accords"
39
40   texidoc = "
41 This template allows the preparation of a song with melody, words, and
42 chords.
43
44 "
45   doctitle = "Single staff template with notes lyrics and chords"
46 } % begin verbatim
47
48 melody = \relative c' {
49   \clef treble
50   \key c \major
51   \time 4/4
52
53   a4 b c d
54 }
55
56 text = \lyricmode {
57   Aaa Bee Cee Dee
58 }
59
60 harmonies = \chordmode {
61   a2 c
62 }
63
64 \score {
65   <<
66     \new ChordNames {
67       \set chordChanges = ##t
68       \harmonies
69     }
70     \new Voice = "one" { \autoBeamOff \melody }
71     \new Lyrics \lyricsto "one" \text
72   >>
73   \layout { }
74   \midi { }
75 }
76