]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/slides-in-tablature.ly
a36833c3f66d0d0a305f4ff958900a0073125256
[lilypond.git] / Documentation / snippets / slides-in-tablature.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "fretted-strings"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14
15 Los deslizamientos se pueden componer tipográficamente tanto en los
16 contextos de @code{Staff} como en los de @code{TabStaff}:
17
18 "
19
20   doctitlees = "Deslizamientos en tablatura"
21
22 %% Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
23   texidocde = "
24 Gleiten kann sowohl in normalem Notensystem als auch in Tabulaturen notiert werden:
25 "
26   doctitlede = "Gleiten (Glissando) in Tabulatur"
27
28 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
29   texidocfr = "
30 Un glissando s'indique dans un @code{TabStaff} tout comme dans un
31 @code{Staff}.
32
33 "
34   doctitlefr = "Glissando et tablature"
35
36
37   texidoc = "
38 Slides can be typeset in both @code{Staff} and @code{TabStaff}
39 contexts:
40
41 "
42   doctitle = "Slides in tablature"
43 } % begin verbatim
44
45 slides = {
46   c'8\3(\glissando d'8\3)
47   c'8\3\glissando d'8\3
48   \hideNotes
49   \grace { g16\3\glissando }
50   \unHideNotes
51   c'4\3
52   \afterGrace d'4\3\glissando {
53   \stemDown \hideNotes
54   g16\3 }
55   \unHideNotes
56 }
57
58 \score {
59   <<
60     \new Staff { \clef "treble_8" \slides }
61     \new TabStaff { \slides }
62   >>
63   \layout {
64     \context {
65       \Score
66       \override Glissando #'minimum-length = #4
67       \override Glissando #'springs-and-rods =
68                           #ly:spanner::set-spacing-rods
69       \override Glissando #'thickness = #2
70     }
71   }
72 }