]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/embedding-native-postscript-in-a--markup-block.ly
80af3f7cae3421e9fc146111dccbbcaaf1381b71
[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.2"
8
9 \header {
10   lsrtags = "specific-notation, text, really-cool, editorial-annotations"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c
21   texidocfr = "
22 Du code PostScript peut directement être intégré dans un bloc
23 @code{\\markup}.
24
25 "
26   doctitlefr = "Intégration de PostScript dans un markup"
27
28   texidoc = "
29 PostScript code can be directly inserted inside a @code{\\markup}
30 block.
31
32 "
33   doctitle = "Embedding native PostScript in a \\markup block"
34 } % begin verbatim
35
36
37 % PostScript is a registered trademark of Adobe Systems Inc.
38
39 \relative c'' {
40   a4-\markup { \postscript #"3 4 moveto 5 3 rlineto stroke" }
41   -\markup { \postscript #"[ 0 1 ] 0 setdash 3 5 moveto 5 -3 rlineto stroke " }
42
43   b4-\markup { \postscript #"3 4 moveto 0 0 1 2 8 4 20 3.5 rcurveto stroke" }
44   s2
45   a'1
46 }
47