]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/open-string-harmonics-in-tablature.ly
Doc-it: fix compile.
[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: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
25   texidocfr = "
26 Table des harmoniques sur corde à vide (harmoniques naturelles) :
27
28 "
29   doctitlefr = "Table des harmoniques sur corde à vide"
30
31
32
33   lsrtags = "fretted-strings"
34   texidoc = "
35 Reference for open-string harmonics:
36 "
37   doctitle = "Reference for open-string harmonics"
38 } % begin verbatim
39
40
41 openStringHarmonics = {
42   %first harmonic
43   \harmonicByFret #12 e,2\6_\markup{"1st harm."}
44   \harmonicByRatio #1/2 e,\6
45   %second harmonic
46   \harmonicByFret #7 e,\6_\markup{"2nd harm. - - - -"}
47   \harmonicByRatio #1/3 e,\6
48   \harmonicByFret #19 e,\6
49   \harmonicByRatio #2/3 e,\6
50   %\harmonicByFret #19 < e,\6 a,\5 d\4 >
51   %\harmonicByRatio #2/3 < e,\6 a,\5 d\4 >
52   %third harmonic
53   \harmonicByFret #5 e,\6_\markup{"3rd harm. - - - -"}
54   \harmonicByRatio #1/4 e,\6
55   \harmonicByFret #24 e,\6
56   \harmonicByRatio #3/4 e,\6
57   \break
58   %fourth harmonic
59   \harmonicByFret #4 e,\6_\markup{"4th harm. - - - - - - - - - - - - -"}
60   \harmonicByRatio #1/5 e,\6
61   \harmonicByFret #9 e,\6
62   \harmonicByRatio #2/5 e,\6
63   \harmonicByFret #16 e,\6
64   \harmonicByRatio #3/5 e,\6
65   %fifth harmonic
66   \harmonicByFret #3 e,\6_\markup{"5th harm."}
67   \harmonicByRatio #1/6 e,\6
68   \break
69   %sixth harmonic
70   \harmonicByFret #2.7 e,\6_\markup{"6th harm."}
71   \harmonicByRatio #1/7 e,\6
72   %seventh harmonic
73   \harmonicByFret #2.3 e,\6_\markup{"7th harm."}
74   \harmonicByRatio #1/8 e,\6
75   %eighth harmonic
76   \harmonicByFret #2 e,\6_\markup{"8th harm."}
77   \harmonicByRatio #1/9 e,\6
78 }
79
80 \score {
81   <<
82     \new Staff {
83       \new Voice {
84         \clef "treble_8"
85         \openStringHarmonics
86       }
87     }
88     \new TabStaff {
89       \new TabVoice {
90         \openStringHarmonics
91       }
92     }
93   >>
94 }