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