]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/contemporary-glissando.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
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