]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes,-lyrics,-chords-and-frets.ly
Update .ly files.
[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.0"
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 % Define the fret diagrams to be used
25 cFretDiagram = \markup {
26   \fret-diagram #"6-x;5-3-3;4-2-2;3-o;2-1-1;1-o;"
27 }
28
29 gFretDiagram = \markup {
30   \fret-diagram #"6-3-2;5-2-1;4-o;3-o;2-o;1-3-3;"
31 }
32
33 verseI = \lyricmode {
34   \set stanza = #"1."
35   This is the first verse
36 }
37
38 verseII = \lyricmode {
39   \set stanza = #"2."
40   This is the second verse.
41 }
42
43 theChords = \new ChordNames {
44   \chordmode {
45     % insert the chords for chordnames here
46     c2 g4 c
47   }
48 }
49
50 staffMelody = \new Staff  {
51  \context Voice = "voiceMelody" {
52    \key c \major
53    \clef treble
54    \relative c' {
55      % Type notes and fret diagram markups here
56      c4^\cFretDiagram d8 e f4^\gFretDiagram g^\cFretDiagram
57      \bar "|."
58    }
59  }
60 }
61
62 \score {
63   <<
64     \theChords
65     \staffMelody
66     \new Lyrics = "lyricsI" \lyricmode {
67       \lyricsto "voiceMelody" \verseI
68     }
69     \new Lyrics = "lyricsII" \lyricmode {
70       \lyricsto "voiceMelody" \verseII
71     }
72   >>
73   \layout { }
74   \midi { }
75 }