]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/string-quartet-template-simple.ly
Docs: update snippets locally
[lilypond.git] / Documentation / snippets / 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: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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
16 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
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   doctitlede = "Vorlage für Streichquartett (einfach)"
24
25 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
26   texidocja = "
27 これは簡単な弦楽四重奏のためのテンプレートです。これは拍子記号と調号のために 
28 @code{@bs{}global} セクションを使っています。
29 "
30
31   texidoc = "
32 This template demonstrates a simple string quartet. It also uses a
33 @code{\\global} section for time and key signatures
34
35 "
36   doctitle = "String quartet template (simple)"
37 } % begin verbatim
38
39 global= {
40   \time 4/4
41   \key c \major
42 }
43
44 violinOne = \new Voice \relative c'' {
45   \set Staff.instrumentName = #"Violin 1 "
46   
47   c2 d
48   e1
49   
50   \bar "|."
51 }
52  
53 violinTwo = \new Voice \relative c'' {
54   \set Staff.instrumentName = #"Violin 2 "
55   
56   g2 f
57   e1
58   
59   \bar "|."
60 }
61
62 viola = \new Voice \relative c' {
63   \set Staff.instrumentName = #"Viola "  
64   \clef alto
65   
66   e2 d
67   c1
68   
69   \bar "|."
70 }
71
72 cello = \new Voice \relative c' {
73   \set Staff.instrumentName = #"Cello "
74   \clef bass
75   
76   c2 b
77   a1
78   
79   \bar "|."
80 }
81
82 \score {
83   \new StaffGroup <<
84     \new Staff << \global \violinOne >>
85     \new Staff << \global \violinTwo >>
86     \new Staff << \global \viola >>
87     \new Staff << \global \cello >>
88   >>
89   \layout { }
90   \midi { }
91 }
92