]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/string-quartet-template-simple.ly
Fix white space
[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   lsrtags = "unfretted-strings, template"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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: 0a868be38a775ecb1ef935b079000cebbc64de40
28   texidocde = "
29 Dieses Beispiel demonstriert die Partitur für ein Streichquartett. Hier
30 wird auch eine @qq{@code{\\global}}-Variable für Taktart und
31 Vorzeichen benutzt.
32 "
33
34   doctitlede = "Vorlage für Streichquartett (einfach)"
35
36
37 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
38   texidocfr = "
39 Voici un canevas pour quatuor à cordes.  Notez l'utilisation de la
40 variable @code{\\global} pour traiter la métrique et la tonalité.
41
42 "
43   doctitlefr = "Quatuor à cordes (conducteur)"
44
45   texidoc = "
46 This template demonstrates a simple string quartet. It also uses a
47 @code{\\global} section for time and key signatures
48
49 "
50   doctitle = "String quartet template (simple)"
51 } % begin verbatim
52
53 global= {
54   \time 4/4
55   \key c \major
56 }
57
58 violinOne = \new Voice \relative c'' {
59   \set Staff.instrumentName = #"Violin 1 "
60
61   c2 d
62   e1
63
64   \bar "|."
65 }
66
67 violinTwo = \new Voice \relative c'' {
68   \set Staff.instrumentName = #"Violin 2 "
69
70   g2 f
71   e1
72
73   \bar "|."
74 }
75
76 viola = \new Voice \relative c' {
77   \set Staff.instrumentName = #"Viola "
78   \clef alto
79
80   e2 d
81   c1
82
83   \bar "|."
84 }
85
86 cello = \new Voice \relative c' {
87   \set Staff.instrumentName = #"Cello "
88   \clef bass
89
90   c2 b
91   a1
92
93   \bar "|."
94 }
95
96 \score {
97   \new StaffGroup <<
98     \new Staff << \global \violinOne >>
99     \new Staff << \global \violinTwo >>
100     \new Staff << \global \viola >>
101     \new Staff << \global \cello >>
102   >>
103   \layout { }
104   \midi { }
105 }
106