]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/string-quartet-template-simple.ly
Doc-es: pre-merge update of texidoc committishes.
[lilypond.git] / input / lsr / string-quartet-template-simple.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "unfretted-strings, template"
7
8   texidoces = "
9 Esta plantilla muestra un cuarteto de cuerda normal. También utiliza
10 una sección @code{\\global} para el compás y la armadura
11
12 "
13   doctitlees = "Plantilla de cuarteto de cuerda (sencilla)"
14   
15   texidocde = "
16 Dieses Beispiel demonstriert die Partitur für ein Streichquartett. Hier 
17 wird auch eine @qq{@code{\global}}-Variable für Taktart und 
18 Vorzeichen benutzt.
19 "
20
21   texidocja = "
22 これは簡単な弦楽四重奏のためのテンプレートです。これは拍子記号と調号のために 
23 @code{@bs{}global} セクションを使っています。
24 "
25
26   texidoc = "
27 This template demonstrates a simple string quartet. It also uses a
28 @code{\\global} section for time and key signatures
29
30 "
31   doctitle = "String quartet template (simple)"
32 } % begin verbatim
33
34 global= {
35   \time 4/4
36   \key c \major
37 }
38
39 violinOne = \new Voice \relative c'' {
40   \set Staff.instrumentName = #"Violin 1 "
41   
42   c2 d
43   e1
44   
45   \bar "|."
46 }
47  
48 violinTwo = \new Voice \relative c'' {
49   \set Staff.instrumentName = #"Violin 2 "
50   
51   g2 f
52   e1
53   
54   \bar "|."
55 }
56
57 viola = \new Voice \relative c' {
58   \set Staff.instrumentName = #"Viola "  
59   \clef alto
60   
61   e2 d
62   c1
63   
64   \bar "|."
65 }
66
67 cello = \new Voice \relative c' {
68   \set Staff.instrumentName = #"Cello "
69   \clef bass
70   
71   c2 b
72   a1
73   
74   \bar "|."
75 }
76
77 \score {
78   \new StaffGroup <<
79     \new Staff << \global \violinOne >>
80     \new Staff << \global \violinTwo >>
81     \new Staff << \global \viola >>
82     \new Staff << \global \cello >>
83   >>
84   \layout { }
85   \midi { }
86 }