]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/aligning-objects-created-with-the--mark-command.ly
5e0e6f4a62a0fdb045289846273c0187604730fa
[lilypond.git] / Documentation / snippets / aligning-objects-created-with-the--mark-command.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "text"
11
12 %% Translation of GIT committish: 1cda7b7b8219cb97399b8e7b56c1115aaf82c002
13   texidocfr = "
14 Par défaut, la commande @code{\\mark} centre les objets sur la barre de
15 mesure.  Ce comportement peut se modifier pour un alignement par la
16 gauche ou par la droite.
17
18 "
19   doctitlefr = "Alignement des objets créés par la commande @code{\\mark}"
20
21   texidoc = "
22 By default the @code{\\mark} command centers objects over a bar line.
23 This behavior can be modified to align at right or left.
24
25 "
26   doctitle = "Aligning objects created with the \\mark command"
27 } % begin verbatim
28
29
30 \relative c' {
31   c1 \mark "(Center)"
32   c1
33   \once \override Score.RehearsalMark #'self-alignment-X = #LEFT
34   \mark "(Left)"
35   c4 c c c
36   c4 c c c
37   \once \override Score.RehearsalMark #'self-alignment-X = #RIGHT
38   \mark "(Right)"
39   c1
40 }
41
42