X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fstring-quartet-template-simple.ly;h=6e7f6e1a23b201e2de100373bf9480dfbc0dc37e;hb=64f92f4f05d02b7dddb2a57f2c2880319ef74323;hp=3452fa60ad8d86d5098b7862c3f7503492d7b8df;hpb=3b8f430efd506ccd6ae8235be0f08468c0da937d;p=lilypond.git diff --git a/Documentation/snippets/string-quartet-template-simple.ly b/Documentation/snippets/string-quartet-template-simple.ly index 3452fa60ad..6e7f6e1a23 100644 --- a/Documentation/snippets/string-quartet-template-simple.ly +++ b/Documentation/snippets/string-quartet-template-simple.ly @@ -1,54 +1,14 @@ -%% DO NOT EDIT this file manually; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it -%% Make any changes in LSR itself, or in Documentation/snippets/new/ , -%% and then run scripts/auxiliar/makelsr.py -%% -%% This file is in the public domain. -\version "2.14.0" +% DO NOT EDIT this file manually; it is automatically +% generated from Documentation/snippets/new +% Make any changes in Documentation/snippets/new/ +% and then run scripts/auxiliar/makelsr.py +% +% This file is in the public domain. +%% Note: this file works from version 2.19.56 +\version "2.19.56" \header { - lsrtags = "unfretted-strings, template" - -%% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb - texidoces = " -Esta plantilla muestra un cuarteto de cuerda normal. También utiliza -una sección @code{\\global} para el compás y la armadura - -" - doctitlees = "Plantilla de cuarteto de cuerda (sencilla)" - - -%% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86 - texidocja = " -これは簡単な弦楽四重奏のためのテンプレートです。これは拍子記号と調号のために -@code{@bs{}global} セクションを使っています。 -" - -%% Translation of GIT committish: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c - texidocit = " -Questo modello presenta un semplice quartetto d'archi. Impiega anche una -sezione @code{\\global} per definire il tempo e l'armatura di chiave. - -" - doctitleit = "Modello per quartetto d'archi (semplice)" - -%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 - texidocde = " -Dieses Beispiel demonstriert die Partitur für ein Streichquartett. Hier -wird auch eine @qq{@code{\\global}}-Variable für Taktart und -Vorzeichen benutzt. -" - - doctitlede = "Vorlage für Streichquartett (einfach)" - - -%% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a - texidocfr = " -Voici un canevas pour quatuor à cordes. Notez l'utilisation de la -variable @code{\\global} pour traiter la métrique et la tonalité. - -" - doctitlefr = "Quatuor à cordes (conducteur)" + lsrtags = "really-simple, template, unfretted-strings" texidoc = " This template demonstrates a simple string quartet. It also uses a @@ -61,54 +21,46 @@ This template demonstrates a simple string quartet. It also uses a global= { \time 4/4 \key c \major -} +} % begin verbatim -violinOne = \new Voice \relative c'' { - \set Staff.instrumentName = #"Violin 1 " +violinOne = \new Voice \relative c'' { c2 d e1 - \bar "|." } violinTwo = \new Voice \relative c'' { - \set Staff.instrumentName = #"Violin 2 " - g2 f e1 - \bar "|." } viola = \new Voice \relative c' { - \set Staff.instrumentName = #"Viola " \clef alto - e2 d c1 - \bar "|." } cello = \new Voice \relative c' { - \set Staff.instrumentName = #"Cello " \clef bass - c2 b a1 - \bar "|." } \score { \new StaffGroup << - \new Staff << \global \violinOne >> - \new Staff << \global \violinTwo >> - \new Staff << \global \viola >> - \new Staff << \global \cello >> + \new Staff \with { instrumentName = "Violin 1" } + << \global \violinOne >> + \new Staff \with { instrumentName = "Violin 2" } + << \global \violinTwo >> + \new Staff \with { instrumentName = "Viola" } + << \global \viola >> + \new Staff \with { instrumentName = "Cello" } + << \global \cello >> >> \layout { } \midi { } } -