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