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