]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/guitar-strum-rhythms.ly
db98ae115feb85413692a5bee1ae418adcd1854e
[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.2"
8
9 \header {
10   lsrtags = "rhythms, fretted-strings"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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
49 \include "predefined-guitar-fretboards.ly"
50 <<
51   \new ChordNames {
52     \chordmode {
53       c1 | f | g | c
54     }
55   }
56   \new FretBoards {
57     \chordmode {
58       c1 | f | g | c
59     }
60   }
61   \new Voice \with {
62     \consists "Pitch_squash_engraver"
63   } {
64     \relative c'' {
65       \improvisationOn
66       c4 c8 c c4 c8 c
67       f4 f8 f f4 f8 f
68       g4 g8 g g4 g8 g
69       c4 c8 c c4 c8 c
70     }
71   }
72   \new Voice = "melody" {
73     \relative c'' {
74       c2 e4 e4
75       f2. r4
76       g2. a4
77       e4 c2.
78     }
79   }
80   \new Lyrics {
81     \lyricsto "melody" {
82       This is my song.
83       I like to sing.
84     }
85   }
86 >>
87