]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/string-quartet-template-simple.ly
0b287727440c9ba48b60543c4f8440394d8d75a7
[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.2"
8
9 \header {
10   lsrtags = "really-simple, unfretted-strings, template"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Esta plantilla muestra un cuarteto de cuerda normal. También utiliza
15 una sección @code{\\global} para el compás y la armadura
16
17 "
18   doctitlees = "Plantilla de cuarteto de cuerda (sencilla)"
19
20
21 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
22   texidocja = "
23 これは簡単な弦楽四重奏のためのテンプレートです。これは拍子記号と調号のために
24 @code{@bs{}global} セクションを使っています。
25 "
26
27 %% Translation of GIT committish: 6ae36b6f8a7cf2df5f4e46c3c06820fccd9f35e1
28   texidocit = "
29 Questo modello presenta un semplice quartetto d'archi. Impiega anche una
30 sezione @code{\\global} per definire il tempo e l'armatura di chiave.
31
32 "
33   doctitleit = "Modello per quartetto d'archi (semplice)"
34
35 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
36   texidocde = "
37 Dieses Beispiel demonstriert die Partitur für ein Streichquartett. Hier
38 wird auch eine @qq{@code{\\global}}-Variable für Taktart und
39 Vorzeichen benutzt.
40 "
41
42   doctitlede = "Vorlage für Streichquartett (einfach)"
43
44
45 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
46   texidocfr = "
47 Voici un canevas pour quatuor à cordes.  Notez l'utilisation de la
48 variable @code{\\global} pour traiter la métrique et la tonalité.
49
50 "
51   doctitlefr = "Quatuor à cordes (conducteur)"
52
53   texidoc = "
54 This template demonstrates a simple string quartet. It also uses a
55 @code{\\global} section for time and key signatures
56
57 "
58   doctitle = "String quartet template (simple)"
59 } % begin verbatim
60
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