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