LSR: Update.
[lilypond.git] / input / lsr / single-staff-template-with-notes,-lyrics,-chords-and-frets.ly
blob3fc75d7cd5f277050ed5f20c71d078d2a51cbc82
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.66"
5 \header {
6 lsrtags = "vocal-music, chords, template"
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.
14 doctitlees = "Plantilla para un pentagrama único con música, letra, acordes y trastes"
16 texidoc = "
17 Here is a simple lead sheet template with melody, lyrics, chords and
18 fret diagrams.
21 doctitle = "Single staff template with notes, lyrics, chords and frets"
22 } % begin verbatim
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;"
29 gFretDiagram = \markup {
30 \fret-diagram #"6-3-2;5-2-1;4-o;3-o;2-o;1-3-3;"
33 verseI = \lyricmode {
34 \set stanza = #"1."
35 This is the first verse
38 verseII = \lyricmode {
39 \set stanza = #"2."
40 This is the second verse.
43 theChords = \new ChordNames {
44 \chordmode {
45 % insert the chords for chordnames here
46 c2 g4 c
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 "|."
62 \score {
64 \theChords
65 \staffMelody
66 \new Lyrics = "lyricsI" \lyricmode {
67 \lyricsto "voiceMelody" \verseI
69 \new Lyrics = "lyricsII" \lyricmode {
70 \lyricsto "voiceMelody" \verseII
73 \layout { }
74 \midi { }