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