]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/embedding-native-postscript-in-a--markup-block.ly
Docs: reorganize documentation directory structure
[lilypond.git] / Documentation / snippets / embedding-native-postscript-in-a--markup-block.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "editorial-annotations, text"
7
8 %% Translation of GIT committish: 55ea64f469d9c1703222654c9e5bc8490b04a67a
9   texidoces = "
10 Se puede insertar códico PostScript directamente dentro de un
11 bloque @code{\\markup}.
12
13 "
14   doctitlees = "Empotrar PostScript nativo dentro de un bloque \\markup"
15
16   texidoc = "
17 PostScript code can be directly inserted inside a @code{\\markup}
18 block. 
19
20 "
21   doctitle = "Embedding native PostScript in a \\markup block"
22 } % begin verbatim
23
24 % PostScript is a registered trademark of Adobe Systems Inc.
25
26 \relative c'' {
27   a4-\markup { \postscript #"3 4 moveto 5 3 rlineto stroke" }
28   -\markup { \postscript #"[ 0 1 ] 0 setdash 3 5 moveto 5 -3 rlineto stroke " }
29   
30   b4-\markup { \postscript #"3 4 moveto 0 0 1 2 8 4 20 3.5 rcurveto stroke" }
31   s2
32   a'1
33 }
34