summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/metapost/featpost/example/featpostlogo.mp
blob: b5304e100dac5dbad12b075bf9806be7a3f9aa12 (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;