Open-string harmonics in tablature: Difference between revisions
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series |
m Lemzwerg moved page Open string harmonics in tablature to Open-string harmonics in tablature without leaving a redirect |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
This snippet demonstrates open-string harmonics. | This snippet demonstrates open-string harmonics. | ||
<lilypond version="2.24" | <lilypond version="2.24"> | ||
%LSR modified by P.P.Schneider on Feb.2014 | % LSR modified by P.P.Schneider on Feb.2014 | ||
openStringHarmonics = { | openStringHarmonics = { | ||
| Line 10: | Line 10: | ||
\override TextSpanner.dash-period = 1 | \override TextSpanner.dash-period = 1 | ||
%first harmonic | % first harmonic | ||
\override TextSpanner.bound-details.left.text = | \override TextSpanner.bound-details.left.text = | ||
\markup\small "1st harm. " | \markup\small "1st harm. " | ||
| Line 16: | Line 16: | ||
\harmonicByRatio #1/2 e,\6\stopTextSpan | \harmonicByRatio #1/2 e,\6\stopTextSpan | ||
%second harmonic | % second harmonic | ||
\override TextSpanner.bound-details.left.text = | \override TextSpanner.bound-details.left.text = | ||
\markup\small "2nd harm. " | \markup\small "2nd harm. " | ||
| Line 26: | Line 26: | ||
%\harmonicByRatio #2/3 < e,\6 a,\5 d\4 > | %\harmonicByRatio #2/3 < e,\6 a,\5 d\4 > | ||
%third harmonic | % third harmonic | ||
\override TextSpanner.bound-details.left.text = | \override TextSpanner.bound-details.left.text = | ||
\markup\small "3rd harm. " | \markup\small "3rd harm. " | ||
| Line 35: | Line 35: | ||
\break | \break | ||
%fourth harmonic | % fourth harmonic | ||
\override TextSpanner.bound-details.left.text = | \override TextSpanner.bound-details.left.text = | ||
\markup\small "4th harm. " | \markup\small "4th harm. " | ||
| Line 45: | Line 45: | ||
\harmonicByRatio #3/5 e,\6\stopTextSpan | \harmonicByRatio #3/5 e,\6\stopTextSpan | ||
%fifth harmonic | % fifth harmonic | ||
\override TextSpanner.bound-details.left.text = | \override TextSpanner.bound-details.left.text = | ||
\markup\small "5th harm. " | \markup\small "5th harm. " | ||
| Line 52: | Line 52: | ||
\break | \break | ||
%sixth harmonic | % sixth harmonic | ||
\override TextSpanner.bound-details.left.text = | \override TextSpanner.bound-details.left.text = | ||
\markup\small "6th harm. " | \markup\small "6th harm. " | ||
| Line 58: | Line 58: | ||
\harmonicByRatio #1/7 e,\6\stopTextSpan | \harmonicByRatio #1/7 e,\6\stopTextSpan | ||
%seventh harmonic | % seventh harmonic | ||
\override TextSpanner.bound-details.left.text = | \override TextSpanner.bound-details.left.text = | ||
\markup\small "7th harm. " | \markup\small "7th harm. " | ||
| Line 64: | Line 64: | ||
\harmonicByRatio #1/8 e,\6\stopTextSpan | \harmonicByRatio #1/8 e,\6\stopTextSpan | ||
%eighth harmonic | % eighth harmonic | ||
\override TextSpanner.bound-details.left.text = | \override TextSpanner.bound-details.left.text = | ||
\markup\small "8th harm. " | \markup\small "8th harm. " | ||
| Line 73: | Line 73: | ||
\score { | \score { | ||
<< | << | ||
\new Staff | \new Staff \with { \omit StringNumber } { | ||
\new Voice { | \new Voice { | ||
\clef "treble_8" | \clef "treble_8" | ||
| Line 87: | Line 86: | ||
>> | >> | ||
} | } | ||
</lilypond> | </lilypond> | ||
[[Category:Fretted strings]] | [[Category:Fretted strings]] | ||
[[Category:Included in the official documentation]] | [[Category:Included in the official documentation]] | ||
[[Category:Snippet]] | |||