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