]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/dotted-harmonics.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / dotted-harmonics.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "unfretted-strings, tweaks-and-overrides"
8
9   texidoc = "
10 Artificial harmonics using @code{\\harmonic} do not show dots.  To
11 override this behavior, set the context property @code{harmonicDots}.
12
13 "
14   doctitle = "Dotted harmonics"
15 } % begin verbatim
16
17 \relative c''' {
18   \time 3/4
19   \key f \major
20   \set harmonicDots = ##t
21   <bes f'\harmonic>2. ~
22   <bes f'\harmonic>4. <a e'\harmonic>8( <gis dis'\harmonic> <g d'\harmonic>)
23   <fis cis'\harmonic>2.
24   <bes f'\harmonic>2.
25 }