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