]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/stemlets.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / stemlets.ly
index 9b6536868d1c8df00b5907f0226837dc1eab6224..da3b38203202b07e18fbc40892a7df91758722c8 100644 (file)
@@ -1,31 +1,12 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.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.2"
+\version "2.18.0"
 
 \header {
-%% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
-  texidocfr = "
-Certaines conventions en matière de notation autorisent les ligatures à
-enjamber des silences.  Dans certains cas, des moignons de hampe
-accrochés à la ligature offrent une meilleure visibilité du rythme, et
-certaines éditions modernes vont même alors jusqu'à omettre le silence.
-
-Cet exemple illustre la progression : notation traditionnelle, ligature
-enjambant le silence, silence surplombé d'un moignon et enfin seule une
-hampe tronquée.  Les moignons s'obtiennent par amendement de la
-propriété @code{'stemlet-length} de l'objet @code{Stem}, alors que les
-silences sont masqués par activation de la propriété de transparence.
-
-Les @emph{markups} ajoutés au code ci-dessous mettent en exergue les
-différentes notations.
-
-"
-  doctitlefr = "Moignons de hampe"
-
   lsrtags = "contemporary-notation, rhythms"
 
   texidoc = "
@@ -49,7 +30,6 @@ the different notations.
   doctitle = "Stemlets"
 } % begin verbatim
 
-
 \paper { ragged-right = ##f }
 
 {
@@ -57,11 +37,10 @@ the different notations.
   g'16[^\markup { beams over rests } f' r d']
 
   % N.B. use Score.Stem to set for the whole score.
-  \override Staff.Stem #'stemlet-length = #0.75
+  \override Staff.Stem.stemlet-length = #0.75
 
   c'16[^\markup { stemlets over rests } d' r f']
   g'16[^\markup { stemlets and no rests } f'
-  \once \override Rest #'transparent = ##t
+  \once \hide Rest
   r16 d']
 }
-