]> 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: 2d548a99cb9dba80f2ff035582009477cd37eceb
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: 40bf2b38d674c43f38058494692d1a0993fad0bd
28   texidocfr = "
29 Un glissando s'indique dans un @code{TabStaff} tout comme dans un
30 @code{Staff}.
31
32 "
33
34   doctitlefr = "Glissando et tablature"
35
36
37   lsrtags = "fretted-strings"
38   texidoc = "
39 Slides can be typeset in both @code{Staff} and @code{TabStaff} contexts:
40 "
41   doctitle = "Slides in tablature"
42 } % begin verbatim
43
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 }