]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/contemporary-glissando.ly
Docs: run convert-ly for 2.14.0.
[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.0"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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 \relative c'' {
48   \time 3/4
49   \override Glissando #'style = #'zigzag
50   c4 c
51   \cadenzaOn
52   c4\glissando
53   \hideNotes
54   c,,4
55   \unHideNotes
56   \cadenzaOff
57   \bar "|"
58 }
59