LSR: Local update.
[lilypond/mpolesky.git] / Documentation / snippets / string-quartet-template-simple.ly
blobec6a1ea296dfee5ec96690c82d3c80c8d021d3bd
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.10"
6 \header {
7 lsrtags = "unfretted-strings, template"
9 %% Translation of GIT committish: 341940d3830b59f93a80131471d622c2818afddb
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
15 doctitlees = "Plantilla de cuarteto de cuerda (sencilla)"
17 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
18 texidocja = "
19 これは簡単な弦楽四重奏のためのテンプレートです。これは拍子記号と調号のために
20 @code{@bs{}global} セクションを使っています。
22 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
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.
29 doctitlede = "Vorlage für Streichquartett (einfach)"
31 %% Translation of GIT committish: 892286cbfdbe89420b8181975032ea975e79d2f5
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é.
37 doctitlefr = "Quatuor à cordes (conducteur)"
39 texidoc = "
40 This template demonstrates a simple string quartet. It also uses a
41 @code{\\global} section for time and key signatures
44 doctitle = "String quartet template (simple)"
45 } % begin verbatim
47 global= {
48 \time 4/4
49 \key c \major
52 violinOne = \new Voice \relative c'' {
53 \set Staff.instrumentName = #"Violin 1 "
55 c2 d
58 \bar "|."
61 violinTwo = \new Voice \relative c'' {
62 \set Staff.instrumentName = #"Violin 2 "
64 g2 f
67 \bar "|."
70 viola = \new Voice \relative c' {
71 \set Staff.instrumentName = #"Viola "
72 \clef alto
74 e2 d
77 \bar "|."
80 cello = \new Voice \relative c' {
81 \set Staff.instrumentName = #"Cello "
82 \clef bass
84 c2 b
87 \bar "|."
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 >>
97 \layout { }
98 \midi { }