]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/polyphony-in-tablature.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / polyphony-in-tablature.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 = "fretted-strings"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 La polifonía se crea de la misma forma en un @code{TabStaff} que
15 en una pauta normal.
16
17 "
18   doctitlees = "Polifonía en tablaturas"
19
20
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22   texidocde = "
23 Polyphonie kann in einer Tabulatur (@code{TabStaff}) genauso wie in einem
24 normalen Notensystem erstellt werden.
25
26 "
27   doctitlede = "Polyphonie in einer Tabulatur"
28
29 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
30   texidocfr = "
31 Une section polyphonique s'obtient dans un @code{TabStaff} de la
32 même manière que dans une portée normale.
33
34 "
35   doctitlefr = "Polyphonie en mode tablature"
36
37
38   texidoc = "
39 Polyphony is created the same way in a @code{TabStaff} as in a regular
40 staff.
41
42 "
43   doctitle = "Polyphony in tablature"
44 } % begin verbatim
45
46 upper = \relative c' {
47   \time 12/8
48   \key e \minor
49   \voiceOne
50   r4. r8 e, fis g16 b g e e' b c b a g fis e
51 }
52
53 lower = \relative c {
54   \key e \minor
55   \voiceTwo
56   r16 e d c b a g4 fis8 e fis g a b c
57 }
58
59 \score {
60   <<
61     \new StaffGroup = "tab with traditional" <<
62       \new Staff = "guitar traditional" <<
63         \clef "treble_8"
64         \context Voice = "upper" \upper
65         \context Voice = "lower" \lower
66       >>
67       \new TabStaff = "guitar tab" <<
68         \context TabVoice = "upper" \upper
69         \context TabVoice = "lower" \lower
70       >>
71     >>
72   >>
73 }
74