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