summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/metapost/featpost/example/standard/featpostlogo.mp
blob: 9e68e9899e68d5341e01eea324764653c71360c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
% featpostlogo.mp
% L. Nobre G.
% 2002

%input featpost3Dplus2D;

verbatimtex
\documentclass{article}
\newfont{\normald}{logod10 scaled 5000}
\pagestyle{empty}
\begin{document}
etex

input boxes;

beginfig(1);
	picture logo;
	defaultdx := 3mm;
	defaultdy := 2mm;
	logo = thelabel.urt( btex {\normald FEATPOST} etex, origin );
	boxit.thelogo( logo );
	drawboxed( thelogo );
endfig;

verbatimtex
\end{document}
etex

end;