]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/embedding-native-postscript-in-a--markup-block.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / embedding-native-postscript-in-a--markup-block.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.0"
8
9 \header {
10   lsrtags = "editorial-annotations, text"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 Se puede insertar códico PostScript directamente dentro de un
15 bloque @code{\\markup}.
16
17 "
18   doctitlees = "Empotrar PostScript nativo dentro de un bloque \\markup"
19
20   texidoc = "
21 PostScript code can be directly inserted inside a @code{\\markup}
22 block.
23
24 "
25   doctitle = "Embedding native PostScript in a \\markup block"
26 } % begin verbatim
27
28 % PostScript is a registered trademark of Adobe Systems Inc.
29
30 \relative c'' {
31   a4-\markup { \postscript #"3 4 moveto 5 3 rlineto stroke" }
32   -\markup { \postscript #"[ 0 1 ] 0 setdash 3 5 moveto 5 -3 rlineto stroke " }
33
34   b4-\markup { \postscript #"3 4 moveto 0 0 1 2 8 4 20 3.5 rcurveto stroke" }
35   s2
36   a'1
37 }
38