summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/metapost/featpost/example/logofontest.mp
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/metapost/featpost/example/logofontest.mp')
-rw-r--r--Master/texmf-dist/doc/metapost/featpost/example/logofontest.mp35
1 files changed, 35 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/metapost/featpost/example/logofontest.mp b/Master/texmf-dist/doc/metapost/featpost/example/logofontest.mp
new file mode 100644
index 00000000000..ddccb82f27f
--- /dev/null
+++ b/Master/texmf-dist/doc/metapost/featpost/example/logofontest.mp
@@ -0,0 +1,35 @@
+% logofontest.mp
+% L. Nobre G.
+% 2004
+
+input boxes;
+
+verbatimtex
+\documentclass{article}
+%\usepackage{charter}% no bold
+\usepackage{newcent}
+%\usepackage{palatino}
+\pagestyle{empty}
+\begin{document}
+etex
+
+beginfig(0);
+ picture thestatement;
+ thestatement = thelabel( btex
+ \begin{tabular}{c}
+ \textbf{\texttt{{\Large T}$\!$ecnumbria}} \\
+ \texttt{\scriptsize a sombra da tecnologia}
+ \end{tabular}
+ etex, origin);
+ circleit.state( thestatement );
+ state.dx = state.dy;
+ pickup pencircle scaled 1pt;
+ fill bpath.state withcolor (0.25,0.33,0.75);
+ draw bpath.state;
+ draw thestatement;
+endfig;
+
+verbatimtex \end{document} etex
+
+end;
+