]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/open-string-harmonics-in-tablature.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / open-string-harmonics-in-tablature.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.14.0
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
12   texidoces = "
13 Referencia para armónicos sobre cuerdas al aire (armónicos naturales):
14
15 "
16   doctitlees = "Referencia para armónicos sobre cuerdas al aire"
17
18 %% Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
19   texidocde = "
20 Referenz für Flageolett von offenen Saiten:
21 "
22   doctitlede = "Referenz für Flageolett von offenen Saiten"
23
24   lsrtags = "fretted-strings"
25   texidoc = "
26 Reference for open-string harmonics:
27 "
28   doctitle = "Reference for open-string harmonics"
29 } % begin verbatim
30
31
32 openStringHarmonics = {
33   %first harmonic
34   \harmonicByFret #12 e,2\6_\markup{"1st harm."}
35   \harmonicByRatio #1/2 e,\6
36   %second harmonic
37   \harmonicByFret #7 e,\6_\markup{"2nd harm. - - - -"}
38   \harmonicByRatio #1/3 e,\6
39   \harmonicByFret #19 e,\6
40   \harmonicByRatio #2/3 e,\6
41   %\harmonicByFret #19 < e,\6 a,\5 d\4 >
42   %\harmonicByRatio #2/3 < e,\6 a,\5 d\4 >
43   %third harmonic
44   \harmonicByFret #5 e,\6_\markup{"3rd harm. - - - -"}
45   \harmonicByRatio #1/4 e,\6
46   \harmonicByFret #24 e,\6
47   \harmonicByRatio #3/4 e,\6
48   \break
49   %fourth harmonic
50   \harmonicByFret #4 e,\6_\markup{"4th harm. - - - - - - - - - - - - -"}
51   \harmonicByRatio #1/5 e,\6
52   \harmonicByFret #9 e,\6
53   \harmonicByRatio #2/5 e,\6
54   \harmonicByFret #16 e,\6
55   \harmonicByRatio #3/5 e,\6
56   %fifth harmonic
57   \harmonicByFret #3 e,\6_\markup{"5th harm."}
58   \harmonicByRatio #1/6 e,\6
59   \break
60   %sixth harmonic
61   \harmonicByFret #2.7 e,\6_\markup{"6th harm."}
62   \harmonicByRatio #1/7 e,\6
63   %seventh harmonic
64   \harmonicByFret #2.3 e,\6_\markup{"7th harm."}
65   \harmonicByRatio #1/8 e,\6
66   %eighth harmonic
67   \harmonicByFret #2 e,\6_\markup{"8th harm."}
68   \harmonicByRatio #1/9 e,\6
69 }
70
71 \score {
72   <<
73     \new Staff {
74       \new Voice {
75         \clef "treble_8"
76         \openStringHarmonics
77       }
78     }
79     \new TabStaff {
80       \new TabVoice {
81         \openStringHarmonics
82       }
83     }
84   >>
85 }