]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes,-lyrics,-chords-and-frets.ly
LSR: Update.
[lilypond.git] / input / lsr / single-staff-template-with-notes,-lyrics,-chords-and-frets.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.12.3"
4
5 \header {
6   lsrtags = "vocal-music, chords, template"
7
8   texidoces = "
9 Presentamos a continuación un ejemplo de plantilla para una hoja
10 guía de acordes con melodía, letra, acordes y diagramas de
11 trastes.
12 "
13
14   doctitlees = "Plantilla para un pentagrama único con música, letra, acordes y trastes"
15
16   texidoc = "
17 Here is a simple lead sheet template with melody, lyrics, chords and
18 fret diagrams.
19
20 "
21   doctitle = "Single staff template with notes, lyrics, chords and frets"
22 } % begin verbatim
23
24 verseI = \lyricmode {
25   \set stanza = #"1."
26   This is the first verse
27 }
28
29 verseII = \lyricmode {
30   \set stanza = #"2."
31   This is the second verse.
32 }
33
34 theChords = \chordmode {
35   % insert chords for chordnames and fretboards here
36   c2 g4 c
37 }
38
39 staffMelody = \relative c' {
40    \key c \major
41    \clef treble
42    % Type notes for melody here
43    c4 d8 e f4 g
44    \bar "|."
45 }
46
47 \score {
48   <<
49     \context ChordNames { \theChords }
50     \context FretBoards { \theChords }
51     \new Staff {
52       \context Voice = "voiceMelody" { \staffMelody }
53     }
54     \new Lyrics = "lyricsI" {
55       \lyricsto "voiceMelody" \verseI
56     }
57     \new Lyrics = "lyricsII" {
58       \lyricsto "voiceMelody" \verseII
59     }
60   >>
61   \layout { }
62   \midi { }
63 }
64