]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/dotted-harmonics.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / dotted-harmonics.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "real-music, tweaks-and-overrides, unfretted-strings"
11
12   texidoc = "
13 Artificial harmonics using @code{\\harmonic} do not show dots.  To
14 override this behavior, set the context property @code{harmonicDots}.
15
16 "
17   doctitle = "Dotted harmonics"
18 } % begin verbatim
19
20
21 \relative c''' {
22   \time 3/4
23   \key f \major
24   \set harmonicDots = ##t
25   <bes f'\harmonic>2. ~
26   <bes f'\harmonic>4. <a e'\harmonic>8( <gis dis'\harmonic> <g d'\harmonic>)
27   <fis cis'\harmonic>2.
28   <bes f'\harmonic>2.
29 }