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