]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes,-lyrics,-chords-and-frets.ly
0bf3aee7f701ab374865a25810cd67c228600086
[lilypond.git] / Documentation / snippets / single-staff-template-with-notes,-lyrics,-chords-and-frets.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "chords, vocal-music, template"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Presentamos a continuación un ejemplo de plantilla para una hoja
15 guía de acordes con melodía, letra, acordes y diagramas de
16 trastes.
17 "
18
19   doctitlees = "Plantilla para un pentagrama único con música letra acordes y trastes"
20
21 %% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
22   texidocfr = "
23 Ce canevas comporte, en plus de la mélodie, des paroles et des accords,
24 les diagrammes de fret.
25
26 "
27   doctitlefr = "Paroles musique accords et diagrammes de fret"
28
29   texidoc = "
30 Here is a simple lead sheet template with melody, lyrics, chords and
31 fret diagrams.
32
33 "
34   doctitle = "Single staff template with notes lyrics chords and frets"
35 } % begin verbatim
36
37
38 verseI = \lyricmode {
39   \set stanza = #"1."
40   This is the first verse
41 }
42
43 verseII = \lyricmode {
44   \set stanza = #"2."
45   This is the second verse.
46 }
47
48 theChords = \chordmode {
49   % insert chords for chordnames and fretboards here
50   c2 g4 c
51 }
52
53 staffMelody = \relative c' {
54    \key c \major
55    \clef treble
56    % Type notes for melody here
57    c4 d8 e f4 g
58    \bar "|."
59 }
60
61 \score {
62   <<
63     \context ChordNames { \theChords }
64     \context FretBoards { \theChords }
65     \new Staff {
66       \context Voice = "voiceMelody" { \staffMelody }
67     }
68     \new Lyrics = "lyricsI" {
69       \lyricsto "voiceMelody" \verseI
70     }
71     \new Lyrics = "lyricsII" {
72       \lyricsto "voiceMelody" \verseII
73     }
74   >>
75   \layout { }
76   \midi { }
77 }
78