]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/aligning-objects-created-with-the--mark-command.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / aligning-objects-created-with-the--mark-command.ly
index 1c8a0b9d82cbef17529ac014f9261fd9cbcd2a12..dac50af89f079a7f60425f39f77c889febb1c736 100644 (file)
@@ -1,21 +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: 1cda7b7b8219cb97399b8e7b56c1115aaf82c002
-  texidocfr = "
-Par défaut, la commande @code{\\mark} centre les objets sur la barre de
-mesure.  Ce comportement peut se modifier pour un alignement par la
-gauche ou par la droite.
-
-"
-  doctitlefr = "Alignement des objets créés par la commande @code{\\mark}"
-
   lsrtags = "text"
 
   texidoc = "
@@ -26,17 +17,14 @@ This behavior can be modified to align at right or left.
   doctitle = "Aligning objects created with the \\mark command"
 } % begin verbatim
 
-
 \relative c' {
   c1 \mark "(Center)"
   c1
-  \once \override Score.RehearsalMark #'self-alignment-X = #LEFT
+  \once \override Score.RehearsalMark.self-alignment-X = #LEFT
   \mark "(Left)"
   c4 c c c
   c4 c c c
-  \once \override Score.RehearsalMark #'self-alignment-X = #RIGHT
+  \once \override Score.RehearsalMark.self-alignment-X = #RIGHT
   \mark "(Right)"
   c1
 }
-
-