LSR: Update.
[lilypond.git] / input / lsr / single-staff-template-with-notes,-lyrics,-chords-and-frets.ly
blobd800ec1d4c482eaeb08bc5a5316dec12744d8fde
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"
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
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;"
28 gFretDiagram = \markup {
29 \fret-diagram #"6-3-2;5-2-1;4-o;3-o;2-o;1-3-3;"
32 verseI = \lyricmode {
33 \set stanza = #"1."
34 This is the first verse
37 verseII = \lyricmode {
38 \set stanza = #"2."
39 This is the second verse.
42 theChords = \new ChordNames {
43 \chordmode {
44 % insert the chords for chordnames here
45 c2 g4 c
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 "|."
61 \score {
63 \theChords
64 \staffMelody
65 \new Lyrics = "lyricsI" \lyricmode {
66 \lyricsto "voiceMelody" \verseI
68 \new Lyrics = "lyricsII" \lyricmode {
69 \lyricsto "voiceMelody" \verseII
72 \layout { }
73 \midi { }