]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/dotted-harmonics.ly
Docs: run convert-ly for 2.14.0.
[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.0"
8
9 \header {
10   lsrtags = "unfretted-strings, tweaks-and-overrides"
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 \relative c''' {
21   \time 3/4
22   \key f \major
23   \set harmonicDots = ##t
24   <bes f'\harmonic>2. ~
25   <bes f'\harmonic>4. <a e'\harmonic>8( <gis dis'\harmonic> <g d'\harmonic>)
26   <fis cis'\harmonic>2.
27   <bes f'\harmonic>2.
28 }