]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-text-from-right-to-left.ly
c2b9819424df018124810ad876e521d0dd4fe6d4
[lilypond.git] / Documentation / snippets / printing-text-from-right-to-left.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 = "world-music, workaround, text, editorial-annotations"
11
12 %% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
13   texidocfr = "
14 Du texte, inclus dans un objet @emph{markup}, peut s'imprimer de droite à
15 gauche, comme illustré ci-dessous.
16
17 "
18   doctitlefr = "Impression de texte de droite à gauche"
19
20   texidoc = "
21 It is possible to print text from right to left in a markup object, as
22 demonstrated here.
23
24 "
25   doctitle = "Printing text from right to left"
26 } % begin verbatim
27
28
29 {
30   b1^\markup {
31     \line { i n g i r u m i m u s n o c t e }
32   }
33   f'_\markup {
34     \override #'(text-direction . -1)
35     \line { i n g i r u m i m u s n o c t e }
36   }
37 }
38