]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/string-quartet-template-simple.ly
Doc: NR 989 - accidental-tie-overriden.ly
[lilypond.git] / Documentation / snippets / string-quartet-template-simple.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.20"
5
6 \header {
7   lsrtags = "unfretted-strings, template"
8
9 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
10   texidoces = "
11 Esta plantilla muestra un cuarteto de cuerda normal. También utiliza
12 una sección @code{\\global} para el compás y la armadura
13
14 "
15   doctitlees = "Plantilla de cuarteto de cuerda (sencilla)"
16
17 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
18   texidocja = "
19 これは簡単な弦楽四重奏のためのテンプレートです。これは拍子記号と調号のために
20 @code{@bs{}global} セクションを使っています。
21 "
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Dieses Beispiel demonstriert die Partitur für ein Streichquartett. Hier
25 wird auch eine @qq{@code{\global}}-Variable für Taktart und
26 Vorzeichen benutzt.
27 "
28
29   doctitlede = "Vorlage für Streichquartett (einfach)"
30
31 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
32   texidocfr = "
33 Voici un canevas pour quatuor à cordes.  Notez l'utilisation de la
34 variable @code{\\global} pour traiter la métrique et la tonalité.
35
36 "
37   doctitlefr = "Quatuor à cordes (conducteur)"
38
39   texidoc = "
40 This template demonstrates a simple string quartet. It also uses a
41 @code{\\global} section for time and key signatures
42
43 "
44   doctitle = "String quartet template (simple)"
45 } % begin verbatim
46
47 global= {
48   \time 4/4
49   \key c \major
50 }
51
52 violinOne = \new Voice \relative c'' {
53   \set Staff.instrumentName = #"Violin 1 "
54
55   c2 d
56   e1
57
58   \bar "|."
59 }
60
61 violinTwo = \new Voice \relative c'' {
62   \set Staff.instrumentName = #"Violin 2 "
63
64   g2 f
65   e1
66
67   \bar "|."
68 }
69
70 viola = \new Voice \relative c' {
71   \set Staff.instrumentName = #"Viola "
72   \clef alto
73
74   e2 d
75   c1
76
77   \bar "|."
78 }
79
80 cello = \new Voice \relative c' {
81   \set Staff.instrumentName = #"Cello "
82   \clef bass
83
84   c2 b
85   a1
86
87   \bar "|."
88 }
89
90 \score {
91   \new StaffGroup <<
92     \new Staff << \global \violinOne >>
93     \new Staff << \global \violinTwo >>
94     \new Staff << \global \viola >>
95     \new Staff << \global \cello >>
96   >>
97   \layout { }
98   \midi { }
99 }
100