]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/string-quartet-template-simple.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / string-quartet-template-simple.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.0"
8
9 \header {
10 %% Translation of GIT committish: 4077120c18ac1dc490501b3d7d5886bc93e61a42
11   texidocit = "
12 Questo modello illustra un semplice quartetto d'archi. Fa anche uso di una
13 sezione @code{\\global} per definire il tempo e l'armatura di chiave
14
15 "
16   doctitleit = "Modello per quartetto d'archi (semplice)"
17
18   lsrtags = "unfretted-strings, template"
19
20
21
22 %% Translation of GIT committish: 615cbf212fdaf0b220b3330da417d0c3602494f2
23   texidoces = "
24 Esta plantilla muestra un cuarteto de cuerda normal. También utiliza
25 una sección @code{\\global} para el compás y la armadura
26
27 "
28   doctitlees = "Plantilla de cuarteto de cuerda (sencilla)"
29
30
31 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
32   texidocja = "
33 これは簡単な弦楽四重奏のためのテンプレートです。これは拍子記号と調号のために
34 @code{@bs{}global} セクションを使っています。
35 "
36
37 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
38   texidocde = "
39 Dieses Beispiel demonstriert die Partitur für ein Streichquartett. Hier
40 wird auch eine @qq{@code{\\global}}-Variable für Taktart und
41 Vorzeichen benutzt.
42 "
43
44   doctitlede = "Vorlage für Streichquartett (einfach)"
45
46
47 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
48   texidocfr = "
49 Voici un canevas pour quatuor à cordes.  Notez l'utilisation de la
50 variable @code{\\global} pour traiter la métrique et la tonalité.
51
52 "
53   doctitlefr = "Quatuor à cordes (conducteur)"
54
55   texidoc = "
56 This template demonstrates a simple string quartet. It also uses a
57 @code{\\global} section for time and key signatures
58
59 "
60   doctitle = "String quartet template (simple)"
61 } % begin verbatim
62
63 global= {
64   \time 4/4
65   \key c \major
66 }
67
68 violinOne = \new Voice \relative c'' {
69   \set Staff.instrumentName = #"Violin 1 "
70
71   c2 d
72   e1
73
74   \bar "|."
75 }
76
77 violinTwo = \new Voice \relative c'' {
78   \set Staff.instrumentName = #"Violin 2 "
79
80   g2 f
81   e1
82
83   \bar "|."
84 }
85
86 viola = \new Voice \relative c' {
87   \set Staff.instrumentName = #"Viola "
88   \clef alto
89
90   e2 d
91   c1
92
93   \bar "|."
94 }
95
96 cello = \new Voice \relative c' {
97   \set Staff.instrumentName = #"Cello "
98   \clef bass
99
100   c2 b
101   a1
102
103   \bar "|."
104 }
105
106 \score {
107   \new StaffGroup <<
108     \new Staff << \global \violinOne >>
109     \new Staff << \global \violinTwo >>
110     \new Staff << \global \viola >>
111     \new Staff << \global \cello >>
112   >>
113   \layout { }
114   \midi { }
115 }
116