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