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