]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-text-from-right-to-left.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[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.16.0"
8
9 \header {
10   lsrtags = "editorial-annotations, text, workaround, world-music"
11
12   texidoc = "
13 It is possible to print text from right to left in a markup object, as
14 demonstrated here.
15
16 "
17   doctitle = "Printing text from right to left"
18 } % begin verbatim
19
20
21 {
22   b1^\markup {
23     \line { i n g i r u m i m u s n o c t e }
24   }
25   f'_\markup {
26     \override #'(text-direction . -1)
27     \line { i n g i r u m i m u s n o c t e }
28   }
29 }