]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/string-quartet-template-simple.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / string-quartet-template-simple.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6 %% Translation of GIT committish: 892286cbfdbe89420b8181975032ea975e79d2f5
7   texidocfr = "
8 Voici un canevas pour quatuor à cordes.  Notez l'utilisation de la 
9 variable @code{\\global} pour traiter la métrique et la tonalité.
10
11 "
12   doctitlefr = "Quatuor à cordes (conducteur)"
13
14   lsrtags = "unfretted-strings, template"
15
16 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
17   texidoces = "
18 Esta plantilla muestra un cuarteto de cuerda normal. También utiliza
19 una sección @code{\\global} para el compás y la armadura
20
21 "
22   doctitlees = "Plantilla de cuarteto de cuerda (sencilla)"
23
24 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
25   texidocde = "
26 Dieses Beispiel demonstriert die Partitur für ein Streichquartett. Hier 
27 wird auch eine @qq{@code{\global}}-Variable für Taktart und 
28 Vorzeichen benutzt.
29 "
30
31   doctitlede = "Vorlage für Streichquartett (einfach)"
32
33 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
34   texidocja = "
35 これは簡単な弦楽四重奏のためのテンプレートです。これは拍子記号と調号のために 
36 @code{@bs{}global} セクションを使っています。
37 "
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