]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-text-from-right-to-left.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / printing-text-from-right-to-left.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "editorial-annotations, text, world-music"
8
9   texidoc = "
10 It is possible to print text from right to left in a markup object, as
11 demonstrated here.
12
13 "
14   doctitle = "Printing text from right to left"
15 } % begin verbatim
16
17 {
18   b1^\markup {
19     \line { i n g i r u m i m u s n o c t e }
20   }
21   f'_\markup {
22     \override #'(text-direction . -1)
23     \line { i n g i r u m i m u s n o c t e }
24   }
25 }
26