]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/dotted-harmonics.ly
5f570f8ca1e566def810106d29997c561091ba50
[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 = "tweaks-and-overrides, real-music, unfretted-strings"
11
12 %% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c
13   texidocfr = "
14 Les notes harmoniques artificielles, obtenues grâce à @code{\\harmonic},
15 ne sont pas pointées.  Ce comportement peut être modifié en activant la
16 propriété de contexte @code{harmonicDots}.
17
18 "
19   doctitlefr = "Harmoniques pointées"
20
21   texidoc = "
22 Artificial harmonics using @code{\\harmonic} do not show dots.  To
23 override this behavior, set the context property @code{harmonicDots}.
24
25 "
26   doctitle = "Dotted harmonics"
27 } % begin verbatim
28
29
30 \relative c''' {
31   \time 3/4
32   \key f \major
33   \set harmonicDots = ##t
34   <bes f'\harmonic>2. ~
35   <bes f'\harmonic>4. <a e'\harmonic>8( <gis dis'\harmonic> <g d'\harmonic>)
36   <fis cis'\harmonic>2.
37   <bes f'\harmonic>2.
38 }