]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-text-from-right-to-left.ly
6f373e253f433702d228f787af6ebb42694eef46
[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.12.2"
8
9 \header {
10   lsrtags = "editorial-annotations, text, 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   b1^\markup {
22     \line { i n g i r u m i m u s n o c t e }
23   }
24   f'_\markup {
25     \override #'(text-direction . -1)
26     \line { i n g i r u m i m u s n o c t e }
27   }
28 }
29