]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/contemporary-glissando.ly
dd7c2e6042cca8a9f37b158c61c9b59d209ce597
[lilypond.git] / Documentation / snippets / contemporary-glissando.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 = "specific-notation, contemporary-notation, expressive-marks"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 Se puede tipografiar un gissando contemporáneo sin nota final
15 utilizando una nota oculta y temporalización de cadenza.
16
17 "
18   doctitlees = "Glissando contemporáneo"
19
20
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22 texidocde = "
23 Ein modernes Glissando ohne eine Endnote kann gesetzt werden, indem
24 eine Kadenz eingesetzt wird und die Endnote unsichtbar gemacht wird.
25
26 "
27   doctitlede = "Moderne Glissandi"
28
29 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
30   texidocfr = "
31 De nos jours, il peut arriver que la note d'arrivée d'un glissando soit
32 absente de la partition.  Pour ce faire, il vous faudra utiliser une
33 cadence et « masquer » la note d'arrivée.
34
35 "
36   doctitlefr = "Glissando contemporain"
37
38
39   texidoc = "
40 A contemporary glissando without a final note can be typeset using a
41 hidden note and cadenza timing.
42
43 "
44   doctitle = "Contemporary glissando"
45 } % begin verbatim
46
47
48 \relative c'' {
49   \time 3/4
50   \override Glissando #'style = #'zigzag
51   c4 c
52   \cadenzaOn
53   c4\glissando
54   \hideNotes
55   c,,4
56   \unHideNotes
57   \cadenzaOff
58   \bar "|"
59 }
60