]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/slides-in-tablature.ly
Get texidoc translations out of snippets source files
[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: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: 28097cf54698db364afeb75658e4c8e0e0ccd716
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   texidoc = "
37 Slides can be typeset in both @code{Staff} and @code{TabStaff}
38 contexts:
39
40 "
41   doctitle = "Slides in tablature"
42 } % begin verbatim
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 }