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