LSR: Update.
[lilypond.git] / input / lsr / string-quartet-template-simple.ly
blob1bd266aa645f032c1335c6a30d1304755f41aa42
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.66"
5 \header {
6 lsrtags = "unfretted-strings, template"
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
13 doctitlees = "Plantilla de cuarteto de cuerda (sencilla)"
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.
21 texidoc = "
22 This template demonstrates a simple string quartet. It also uses a
23 @code{\\global} section for time and key signatures
26 doctitle = "String quartet template (simple)"
27 } % begin verbatim
29 global= {
30 \time 4/4
31 \key c \major
34 violinOne = \new Voice \relative c'' {
35 \set Staff.instrumentName = #"Violin 1 "
37 c2 d
40 \bar "|."
43 violinTwo = \new Voice \relative c'' {
44 \set Staff.instrumentName = #"Violin 2 "
46 g2 f
49 \bar "|."
52 viola = \new Voice \relative c' {
53 \set Staff.instrumentName = #"Viola "
54 \clef alto
56 e2 d
59 \bar "|."
62 cello = \new Voice \relative c' {
63 \set Staff.instrumentName = #"Cello "
64 \clef bass
66 c2 b
69 \bar "|."
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 >>
79 \layout { }
80 \midi { }