]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/open-string-harmonics-in-tablature.ly
Docs: run convert-ly for 2.14.0.
[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.13.49
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 69d7781c6ab26df02bc81ff1eb294d47fa673491
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   lsrtags = "fretted-strings"
19   texidoc = "
20 Reference for open-string harmonics:
21 "
22   doctitle = "Reference for open-string harmonics"
23 } % begin verbatim
24
25
26 openStringHarmonics = {
27   %first harmonic
28   \harmonicByFret #12 e,2\6_\markup{"1st harm."}
29   \harmonicByRatio #1/2 e,\6
30   %second harmonic
31   \harmonicByFret #7 e,\6_\markup{"2nd harm. - - - -"}
32   \harmonicByRatio #1/3 e,\6
33   \harmonicByFret #19 e,\6
34   \harmonicByRatio #2/3 e,\6
35   %\harmonicByFret #19 < e,\6 a,\5 d\4 >
36   %\harmonicByRatio #2/3 < e,\6 a,\5 d\4 >
37   %third harmonic
38   \harmonicByFret #5 e,\6_\markup{"3rd harm. - - - -"}
39   \harmonicByRatio #1/4 e,\6
40   \harmonicByFret #24 e,\6
41   \harmonicByRatio #3/4 e,\6
42   \break
43   %fourth harmonic
44   \harmonicByFret #4 e,\6_\markup{"4th harm. - - - - - - - - - - - - -"}
45   \harmonicByRatio #1/5 e,\6
46   \harmonicByFret #9 e,\6
47   \harmonicByRatio #2/5 e,\6
48   \harmonicByFret #16 e,\6
49   \harmonicByRatio #3/5 e,\6
50   %fifth harmonic
51   \harmonicByFret #3 e,\6_\markup{"5th harm."}
52   \harmonicByRatio #1/6 e,\6
53   \break
54   %sixth harmonic
55   \harmonicByFret #2.7 e,\6_\markup{"6th harm."}
56   \harmonicByRatio #1/7 e,\6
57   %seventh harmonic
58   \harmonicByFret #2.3 e,\6_\markup{"7th harm."}
59   \harmonicByRatio #1/8 e,\6
60   %eighth harmonic
61   \harmonicByFret #2 e,\6_\markup{"8th harm."}
62   \harmonicByRatio #1/9 e,\6
63 }
64
65 \score {
66   <<
67     \new Staff {
68       \new Voice {
69         \clef "treble_8"
70         \openStringHarmonics
71       }
72     }
73     \new TabStaff {
74       \new TabVoice {
75         \openStringHarmonics
76       }
77     }
78   >>
79 }