]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/string-quartet-template-simple.ly
Make the length of beamlets configurable.
[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.64"
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
29 global= {
30   \time 4/4
31   \key c \major
32 }
33
34 violinOne = \new Voice \relative c'' {
35   \set Staff.instrumentName = #"Violin 1 "
36   
37   c2 d
38   e1
39   
40   \bar "|."
41 }
42  
43 violinTwo = \new Voice \relative c'' {
44   \set Staff.instrumentName = #"Violin 2 "
45   
46   g2 f
47   e1
48   
49   \bar "|."
50 }
51
52 viola = \new Voice \relative c' {
53   \set Staff.instrumentName = #"Viola "  
54   \clef alto
55   
56   e2 d
57   c1
58   
59   \bar "|."
60 }
61
62 cello = \new Voice \relative c' {
63   \set Staff.instrumentName = #"Cello "
64   \clef bass
65   
66   c2 b
67   a1
68   
69   \bar "|."
70 }
71
72 \score {
73   \new StaffGroup <<
74     \new Staff << \global \violinOne >>
75     \new Staff << \global \violinTwo >>
76     \new Staff << \global \viola >>
77     \new Staff << \global \cello >>
78   >>
79   \layout { }
80   \midi { }
81 }