LSR: Update.
[lilypond/mpolesky.git] / Documentation / snippets / single-staff-template-with-notes,-lyrics,-and-chords.ly
blob618d283585004b84004c92e82d173f7e7c5acb2e
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.29"
6 \header {
7 lsrtags = "vocal-music, chords, template"
9 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
10 texidoces = "
11 Esta plantilla facilita la preparación de una canción con melodía,
12 letra y acordes.
15 doctitlees = "Plantilla de pentagrama único con música letra y acordes"
17 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
18 texidocja = "
19 これは旋律、単語、コードを持つ歌曲の楽譜のためのテンプレートです。
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22 texidocde = "
23 Mit diesem Beispiel können Sie einen Song mit Melodie,
24 Text und Akkorden schreiben.
27 doctitlede = "Vorlage für eine Notenzeile mit Noten Text und Akkorden"
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.
35 doctitlefr = "Paroles musique et accords"
37 texidoc = "
38 This template allows the preparation of a song with melody, words, and
39 chords.
42 doctitle = "Single staff template with notes lyrics and chords"
43 } % begin verbatim
45 melody = \relative c' {
46 \clef treble
47 \key c \major
48 \time 4/4
50 a4 b c d
53 text = \lyricmode {
54 Aaa Bee Cee Dee
57 harmonies = \chordmode {
58 a2 c
61 \score {
63 \new ChordNames {
64 \set chordChanges = ##t
65 \harmonies
67 \new Voice = "one" { \autoBeamOff \melody }
68 \new Lyrics \lyricsto "one" \text
70 \layout { }
71 \midi { }