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