]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/string-quartet-template-simple.ly
LSR: local update.
[lilypond.git] / Documentation / snippets / string-quartet-template-simple.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.12.2"
5
6 \header {
7   lsrtags = "unfretted-strings, template"
8
9 %% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec
10   texidoces = "
11 Esta plantilla muestra un cuarteto de cuerda normal. También utiliza
12 una sección @code{\\global} para el compás y la armadura
13
14 "
15   doctitlees = "Plantilla de cuarteto de cuerda (sencilla)"
16
17
18 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
19   texidocja = "
20 これは簡単な弦楽四重奏のためのテンプレートです。これは拍子記号と調号のために
21 @code{@bs{}global} セクションを使っています。
22 "
23
24 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
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
34 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
35   texidocfr = "
36 Voici un canevas pour quatuor à cordes.  Notez l'utilisation de la
37 variable @code{\\global} pour traiter la métrique et la tonalité.
38
39 "
40   doctitlefr = "Quatuor à cordes (conducteur)"
41
42   texidoc = "
43 This template demonstrates a simple string quartet. It also uses a
44 @code{\\global} section for time and key signatures
45
46 "
47   doctitle = "String quartet template (simple)"
48 } % begin verbatim
49
50 global= {
51   \time 4/4
52   \key c \major
53 }
54
55 violinOne = \new Voice \relative c'' {
56   \set Staff.instrumentName = #"Violin 1 "
57
58   c2 d
59   e1
60
61   \bar "|."
62 }
63
64 violinTwo = \new Voice \relative c'' {
65   \set Staff.instrumentName = #"Violin 2 "
66
67   g2 f
68   e1
69
70   \bar "|."
71 }
72
73 viola = \new Voice \relative c' {
74   \set Staff.instrumentName = #"Viola "
75   \clef alto
76
77   e2 d
78   c1
79
80   \bar "|."
81 }
82
83 cello = \new Voice \relative c' {
84   \set Staff.instrumentName = #"Cello "
85   \clef bass
86
87   c2 b
88   a1
89
90   \bar "|."
91 }
92
93 \score {
94   \new StaffGroup <<
95     \new Staff << \global \violinOne >>
96     \new Staff << \global \violinTwo >>
97     \new Staff << \global \viola >>
98     \new Staff << \global \cello >>
99   >>
100   \layout { }
101   \midi { }
102 }
103