]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/aligning-objects-created-with-the--mark-command.ly
Merge branch 'master' into translation
[lilypond.git] / Documentation / snippets / aligning-objects-created-with-the--mark-command.ly
index 5e0e6f4a62a0fdb045289846273c0187604730fa..dac50af89f079a7f60425f39f77c889febb1c736 100644 (file)
@@ -1,23 +1,14 @@
 %% 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 {
   lsrtags = "text"
 
-%% 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}"
-
   texidoc = "
 By default the @code{\\mark} command centers objects over a bar line.
 This behavior can be modified to align at right or left.
@@ -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
 }
-
-