]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/contemporary-glissando.ly
a630c0c8e683b8d6c8edb7cdc400382506271e75
[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 = "expressive-marks, specific-notation, contemporary-notation"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
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 @qq{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