X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fadding-drum-parts.ly;h=1d515d5dad12f4972a43340d063ecefcb5875c20;hb=75b64f8ddda16f3b2eb77ec5e9631d92b9be7da4;hp=b4aa1aad7a895e838dace8df5c3e1864d029c84f;hpb=628ff1f709a0a06d3a544b1feaa544fe16134911;p=lilypond.git diff --git a/Documentation/snippets/adding-drum-parts.ly b/Documentation/snippets/adding-drum-parts.ly index b4aa1aad7a..1d515d5dad 100644 --- a/Documentation/snippets/adding-drum-parts.ly +++ b/Documentation/snippets/adding-drum-parts.ly @@ -1,12 +1,15 @@ -%% Do not edit this file; it is automatically +%% 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.13.10" +\version "2.15.32" \header { - lsrtags = "rhythms, percussion" + lsrtags = "preparing-parts, specific-notation, percussion, really-simple, rhythms" -%% Translation of GIT committish: 5cab62e8738ff02eead438042743116391f306f5 +%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa texidoces = " Mediante la utilización de las potentes herramientas preconfiguradas como la función @code{\\drummode} y el contexto @code{DrumStaff}, la @@ -19,18 +22,18 @@ de líneas. " doctitlees = "Escritura de partes de percusión" -%% Translation of GIT committish: 499a511d4166feaada31114e097f86b5e0c56421 + +%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4 texidocfr = " Grâce à la puissance des outils préconfigurés tels que la fonction @code{\\drummode} et le contexte @code{DrumStaff}, la saisie de -parties pour percussions est extrêmement simplifiée : chaque composant -d'une batterie trouve sa place sur une portée dédiée (avec une clef -spécifique) et les têtes de note sont spécifiques à chaque élément. +parties pour percussions est extrêmement simplifiée@tie{}: chaque +composant d'une batterie trouve sa place sur une portée dédiée (avec une +clef spécifique) et les têtes de note sont spécifiques à chaque élément. Il est également possible d'affecter un symbole particulier à chaque élément, tout comme de restreindre le nombre de lignes de la portée. " - doctitlefr = "Ajout de parties de batterie" @@ -46,6 +49,7 @@ lines is possible. doctitle = "Adding drum parts" } % begin verbatim + drh = \drummode { cymc4.^"crash" hhc16^"h.h." hh hhc8 hho hhc8 hh16 hh hhc4 r4 r2 } drl = \drummode { bd4 sn8 bd bd4 << bd ss >> bd8 tommh tommh bd toml toml bd tomfh16 tomfh } timb = \drummode { timh4 ssh timl8 ssh r timh r4 ssh8 timl r4 cb8 cb } @@ -55,7 +59,7 @@ timb = \drummode { timh4 ssh timl8 ssh r timh r4 ssh8 timl r4 cb8 cb } \new DrumStaff \with { drumStyleTable = #timbales-style \override StaffSymbol #'line-count = #2 - \override BarLine #'bar-size = #2 + \override BarLine #'bar-extent = #'(-1 . 1) } << \set Staff.instrumentName = #"timbales" \timb @@ -68,10 +72,7 @@ timb = \drummode { timh4 ssh timl8 ssh r timh r4 ssh8 timl r4 cb8 cb } >> \layout { } \midi { - \context { - \Score - tempoWholesPerMinute = #(ly:make-moment 120 4) - } + \tempo 4 = 120 } }