]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/slides-in-tablature.ly
Docs: run convert-ly for 2.14.0.
[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.13.49
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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   lsrtags = "fretted-strings"
28   texidoc = "
29 Slides can be typeset in both @code{Staff} and @code{TabStaff} contexts:
30 "
31   doctitle = "Slides in tablature"
32 } % begin verbatim
33
34
35 slides = {
36   c'8\3(\glissando d'8\3)
37   c'8\3\glissando d'8\3
38   \hideNotes
39   \grace { g16\3\glissando }
40   \unHideNotes
41   c'4\3
42   \afterGrace d'4\3\glissando {
43   \stemDown \hideNotes
44   g16\3 }
45   \unHideNotes
46 }
47
48 \score {
49   <<
50     \new Staff { \clef "treble_8" \slides }
51     \new TabStaff { \slides }
52   >>
53   \layout {
54     \context {
55       \Score
56       \override Glissando #'minimum-length = #4
57       \override Glissando #'springs-and-rods =
58                           #ly:spanner::set-spacing-rods
59       \override Glissando #'thickness = #2
60     }
61   }
62 }