blob: cdc0a4ec1558f4e20718e89e764b19c9ca85b921 (
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
38
39
40
41
42
43
44
|
%%
%% A DANTE-Edition example
%%
%% Example 36-00-98 on page 810.
%%
%% Copyright (C) 2011 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.
%%
%%
%% ====
% Show page(s) 1
%%
\documentclass[]{article}
\pagestyle{empty}
\setlength\textwidth{201.70511pt}
\setlength\parindent{0pt}
\usepackage{pstricks,pst-node,pst-tree,calc}
\definecolor{darkyellow}{rgb}{1, 0.9, 0}
\newcommand\cbox[1]{\colorbox{darkyellow}{#1}}
\newcommand*\pbox[2]{\parbox[t]{\widthof{#1}}{\footnotesize #2}}
\begin{document}
\begin{psmatrix}[rowsep=0pt,colsep=0pt]
\verb+if (+ &[name=rn24a] \cbox{Condition}
& \verb+) {+ &[name=rn25a] \cbox{Command block 1}
& \verb+} else {+ &[name=rn26a] \cbox{Command block 2} & \verb+}+\\[0.75cm]
&[name=rn24e] \pbox{( Condition )}{The condition must be true or false}
&&[name=rn25e] \pbox{\{ Command block 1 \}}{%
This command is executed if the condition
is $\neq0$, which means true.}
&&[name=rn26e]\pbox{\{ Anweisungsblock 2 \}}{%
This command is executed if the condition
is $=0$, which means false.}
\end{psmatrix}
\nccurve[angleA=-90,angleB=90]{->}{rn24a}{rn24e}
\nccurve[angleA=-90,angleB=90]{->}{rn25a}{rn25e}
\nccurve[angleA=-90,angleB=90]{->}{rn26a}{rn26e}
\end{document}
|