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