Good idea. Sometimes a picture is better.Saed Daoud wrote:[…] I attached a hand-drawn figure of what I want.
You can try something like this.
Code: Select all
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{tikz}
\usetikzlibrary{calc,shadows}
\tikzstyle{sensor}=[
draw,
fill=blue!20,
text width=5em,
text centered,
minimum height=2.5em
]
\tikzstyle{naveqs}=[
sensor,
text width=4em,
fill=gray!40,
minimum height=12em,
rounded corners,
shade,
drop shadow
]
\begin{document}
\begin{tikzpicture}[>=latex]
\node (s2p) [naveqs] {S/P};
\node (fft) [naveqs,right of=s2p,node distance=3cm] {FFT};
\draw[->] (s2p.65) -- (fft.115);
\draw[->] (s2p.50) -- (fft.130);
\draw[->] (s2p.295) -- (fft.245);
\fill ($(s2p)+(1.5,0)$) circle[radius=1pt] +(0,0.5) circle[radius=1pt] +(0,-0.5) circle[radius=1pt];
\end{tikzpicture}
\end{document}