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