]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/contemporary-glissando.ly
Docs: update snippets locally
[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 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
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
25   texidoc = "
26 A contemporary glissando without a final note can be typeset using a
27 hidden note and cadenza timing.
28
29 "
30   doctitle = "Contemporary glissando"
31 } % begin verbatim
32
33 \relative c'' {
34   \time 3/4
35   \override Glissando #'style = #'zigzag
36   c4 c
37   \cadenzaOn
38   c4\glissando
39   \hideNotes
40   c,,4
41   \unHideNotes
42   \cadenzaOff
43   \bar "|"
44 }
45