]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/guitar-strum-rhythms.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / guitar-strum-rhythms.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.0"
8
9 \header {
10   lsrtags = "rhythms, fretted-strings"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 Para la música de guitarra, es posible mostrar los ritmos de rasgueo,
15 además de las notas de la melodía, acordes y diagramas de posiciones.
16
17 "
18   doctitlees = "Ritmos rasgueados de guitarra"
19
20
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22   texidocde = "
23 In Gitarrennotation kann neben Melodie, Akkordbezeichnungen und
24 Bunddiagrammen auch der Schlagrhythmus angegeben werden.
25
26 "
27   doctitlede = "Schlagrhythmus für Gitarren"
28
29
30
31 %% Translation of GIT committish: 015b8e65e5e9a74cea1618b597402b5b74f89b89
32   texidocfr = "
33 En matière de notation pour guitare, il arrive que soient indiqués les
34 @qq{coups de gratte} en plus de la mélodie, grilles d'accords et
35 diagrammes de tablature.
36
37 "
38   doctitlefr = "Rythmique et guitare"
39
40   texidoc = "
41 For guitar music, it is possible to show strum rhythms, along with
42 melody notes, chord names and fret diagrams.
43
44 "
45   doctitle = "Guitar strum rhythms"
46 } % begin verbatim
47
48 \include "predefined-guitar-fretboards.ly"
49 <<
50   \new ChordNames {
51     \chordmode {
52       c1 | f | g | c
53     }
54   }
55   \new FretBoards {
56     \chordmode {
57       c1 | f | g | c
58     }
59   }
60   \new Voice \with {
61     \consists "Pitch_squash_engraver"
62   } {
63     \relative c'' {
64       \improvisationOn
65       c4 c8 c c4 c8 c
66       f4 f8 f f4 f8 f
67       g4 g8 g g4 g8 g
68       c4 c8 c c4 c8 c
69     }
70   }
71   \new Voice = "melody" {
72     \relative c'' {
73       c2 e4 e4
74       f2. r4
75       g2. a4
76       e4 c2.
77     }
78   }
79   \new Lyrics {
80     \lyricsto "melody" {
81       This is my song.
82       I like to sing.
83     }
84   }
85 >>
86