I have create the following using Tikz.
\begin{document}
\pagestyle{empty}
% Define block styles
\tikzstyle{block} = [rectangle, draw, fill=white, rounded corners,
minimum height=2em, minimum width =7em, text width=5em]
\tikzstyle{line} = [draw, -latex']
\begin{tikzpicture}[node distance = 2cm, auto]
% Place nodes
\node [block] (strategy) {\footnotesize Multimedia RSs};
\node [block, right of=strategy, node distance=3cm] (content) {\footnotesize Multimedia Content};
% Draw edges
\path [line] (strategy) -- (content);
\end{tikzpicture}
\end{document}
the output looks like this:
I would like the box 'Multimedia Content' to appear on the 'North East' and another box on the 'South East' with arrows that are not oblique (i.e. combination of horizontal and vertical arrows). I am quite new to tikzz so your suggestions are very welcome.
P.s. as you can see the text size are huge although \footnotesize.



