]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/string-quartet-template-simple.ly
Merge master into nested-bookparts
[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.11.62"
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   texidoc = "
22 This template demonstrates a simple string quartet. It also uses a
23 @code{\\global} section for time and key signatures
24
25 "
26   doctitle = "String quartet template (simple)"
27 } % begin verbatim
28 global= {
29   \time 4/4
30   \key c \major
31 }
32
33 violinOne = \new Voice \relative c'' {
34   \set Staff.instrumentName = #"Violin 1 "
35   
36   c2 d
37   e1
38   
39   \bar "|."
40 }
41  
42 violinTwo = \new Voice \relative c'' {
43   \set Staff.instrumentName = #"Violin 2 "
44   
45   g2 f
46   e1
47   
48   \bar "|."
49 }
50
51 viola = \new Voice \relative c' {
52   \set Staff.instrumentName = #"Viola "  
53   \clef alto
54   
55   e2 d
56   c1
57   
58   \bar "|."
59 }
60
61 cello = \new Voice \relative c' {
62   \set Staff.instrumentName = #"Cello "
63   \clef bass
64   
65   c2 b
66   a1
67   
68   \bar "|."
69 }
70
71 \score {
72   \new StaffGroup <<
73     \new Staff << \global \violinOne >>
74     \new Staff << \global \violinTwo >>
75     \new Staff << \global \viola >>
76     \new Staff << \global \cello >>
77   >>
78   \layout { }
79   \midi { }
80 }