]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/aligning-marks-with-various-notation-objects.ly
Doc-es: remove last snippets from the lsr directory.
[lilypond.git] / Documentation / snippets / aligning-marks-with-various-notation-objects.ly
index 7591ea67fd9e2b9908b173c1bf77cb6fd497017a..4ff3bbb19bfa226d24afb6562eef5e93572e1928 100644 (file)
@@ -1,11 +1,12 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% Do not edit this file; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.13.1"
+\version "2.13.10"
 
 \header {
   lsrtags = "text"
 
-%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
+%% Translation of GIT committish: 4385ed4cc738e164a95798862580b4b86703356f
   texidoces = "
 Si están especificadas, las marcas de texto se pueden alinear con
 objetos de notación distintos a las líneas divisorias.  Entre estos
@@ -37,6 +38,29 @@ diese Einstellung für alle Systeme gemacht werden.
 "
 
   doctitlede = "Zeichen an verschiedenen Notationsobjekten ausrichten"
+%% Translation of GIT committish: c2e8b1d6d671dbfc138f890cbc7e9882b7be2761
+  texidocfr = "
+Les indications textuelles peuvent s'aligner par rapport à d'autres
+objets que des barres de mesure, tels que @code{ambitus},
+@code{breathing-sign}, @code{clef}, @code{custos}, @code{staff-bar},
+@code{left-edge}, @code{key-cancellation}, @code{key-signature}, ou
+@code{time-signature}.
+
+
+
+Par défaut, les indications textuelles sont alignées avec le milieu
+des objets de notation. Bien entendu, vous pouvez modifier les
+propriétés des objets en question pour obtenir un autre
+résultat comme l'illustre la deuxième ligne de l'exemple.  Dans le cas
+de portées multiples, ces réglages doivent être faits pour chacune
+d'entre elles.
+
+
+
+"
+  doctitlefr = "Alignement des indications par rapport à divers objets
+de notation"
+
 
   texidoc = "
 If specified, text marks may be aligned with notation objects other
@@ -60,49 +84,49 @@ be done for all the staves).
 
 \relative c' {
   e1
-  
+
   % the RehearsalMark will be centered above the Clef
   \override Score.RehearsalMark #'break-align-symbols = #'(clef)
   \key a \major
   \clef treble
   \mark "↓"
   e1
-  
+
   % the RehearsalMark will be centered above the TimeSignature
   \override Score.RehearsalMark #'break-align-symbols = #'(time-signature)
   \key a \major
   \clef treble
   \time 3/4
-  \mark "↓"
+  \mark \markup { \char ##x2193 }
   e2.
-  
+
   % the RehearsalMark will be centered above the KeySignature
   \override Score.RehearsalMark #'break-align-symbols = #'(key-signature)
   \key a \major
   \clef treble
   \time 4/4
-  \mark "↓"
+  \mark \markup { \char ##x2193 }
   e1
 
   \break
   e1
-  
+
   % the RehearsalMark will be aligned with the left edge of the KeySignature
   \once \override Score.KeySignature #'break-align-anchor-alignment = #LEFT
-  \mark "↓"
+  \mark \markup { \char ##x2193 }
   \key a \major
   e1
-  
+
   % the RehearsalMark will be aligned with the right edge of the KeySignature
   \once \override Score.KeySignature #'break-align-anchor-alignment = #RIGHT
   \key a \major
-  \mark "↓"
+  \mark \markup { \char ##x2193 }
   e1
-  
+
   % the RehearsalMark will be aligned with the left edge of the KeySignature
   % and then shifted right by one unit.
   \once \override Score.KeySignature #'break-align-anchor = #1
   \key a \major
-  \mark "↓"
+  \mark \markup { \char ##x2193 }
   e1
 }