blob: c1b7d9faaaa56e43afa6dd0a2ba005e146ade37d (
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
30
31
32
33
34
35
36
37
|
%%
%% Ein Beispiel der DANTE-Edition
%%
%% Beispiel 15-02-55 auf Seite 764.
%%
%% Copyright (C) 2012 Herbert Voss
%%
%% It may be distributed and/or modified under the conditions
%% of the LaTeX Project Public License, either version 1.3
%% of this license or (at your option) any later version.
%%
%% See http://www.latex-project.org/lppl.txt for details.
%%
%%
%% ====
verbatimtex
%%
\documentclass[]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{textcomp}
\begin{document}
etex
% --- start of displayed preamble in the book ---
input metaobj;
% --- end of displayed preamble in the book ---
beginfig(1)
newCircle.Start("Start");newBox.Ende("Ende");
Start.c=origin; Ende.c=Start.c+(2cm,2cm);
ncarc(Start)(Ende);
ncarc(Start)(Ende) "arrows(<-)", "arcangleA(-90)",
"arcangleB(-110)", "linestyle(dashed evenly)";
ncbar(Ende)(Start) "angleA(-90)", "armB(10mm)";
drawObj(Start,Ende);
endfig;
end;
\end{document}
|