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