]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/string-quartet-template-simple.ly
Doc-es: fix links from web to Usage.
[lilypond.git] / Documentation / snippets / string-quartet-template-simple.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.10"
5
6 \header {
7   lsrtags = "unfretted-strings, template"
8
9 %% Translation of GIT committish: 4385ed4cc738e164a95798862580b4b86703356f
10   texidoces = "
11 Esta plantilla muestra un cuarteto de cuerda normal. También utiliza
12 una sección @code{\\global} para el compás y la armadura
13
14 "
15   doctitlees = "Plantilla de cuarteto de cuerda (sencilla)"
16
17 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
18   texidocja = "
19 これは簡単な弦楽四重奏のためのテンプレートです。これは拍子記号と調号のために
20 @code{@bs{}global} セクションを使っています。
21 "
22 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
23   texidocde = "
24 Dieses Beispiel demonstriert die Partitur für ein Streichquartett. Hier
25 wird auch eine @qq{@code{\global}}-Variable für Taktart und
26 Vorzeichen benutzt.
27 "
28
29   doctitlede = "Vorlage für Streichquartett (einfach)"
30
31 %% Translation of GIT committish: 892286cbfdbe89420b8181975032ea975e79d2f5
32   texidocfr = "
33 Voici un canevas pour quatuor à cordes.  Notez l'utilisation de la
34 variable @code{\\global} pour traiter la métrique et la tonalité.
35
36 "
37   doctitlefr = "Quatuor à cordes (conducteur)"
38
39   texidoc = "
40 This template demonstrates a simple string quartet. It also uses a
41 @code{\\global} section for time and key signatures
42
43 "
44   doctitle = "String quartet template (simple)"
45 } % begin verbatim
46
47 global= {
48   \time 4/4
49   \key c \major
50 }
51
52 violinOne = \new Voice \relative c'' {
53   \set Staff.instrumentName = #"Violin 1 "
54
55   c2 d
56   e1
57
58   \bar "|."
59 }
60
61 violinTwo = \new Voice \relative c'' {
62   \set Staff.instrumentName = #"Violin 2 "
63
64   g2 f
65   e1
66
67   \bar "|."
68 }
69
70 viola = \new Voice \relative c' {
71   \set Staff.instrumentName = #"Viola "
72   \clef alto
73
74   e2 d
75   c1
76
77   \bar "|."
78 }
79
80 cello = \new Voice \relative c' {
81   \set Staff.instrumentName = #"Cello "
82   \clef bass
83
84   c2 b
85   a1
86
87   \bar "|."
88 }
89
90 \score {
91   \new StaffGroup <<
92     \new Staff << \global \violinOne >>
93     \new Staff << \global \violinTwo >>
94     \new Staff << \global \viola >>
95     \new Staff << \global \cello >>
96   >>
97   \layout { }
98   \midi { }
99 }
100