welcome: please sign in

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment

Revision 3 as of 2014-10-04 17:38:48

location: Computer / Latex / BlockDiagramsTikZ / ffss_tex

ffss

../ffss.png

The bluish background color of the boxes is of course only an examples and is easily changed to something else --- or to nothing.

Download ffss.tex

\documentclass{standalone}
\usepackage[utf8]{inputenc}
\usepackage{amsmath,amsfonts,amssymb}

\usepackage{tikz}
\usetikzlibrary{shapes,positioning,calc}
\usetikzlibrary{narrow}

\tikzset{every picture/.style={auto, line width=1pt, >=narrow,font=\small}}

\tikzset{block/.style={draw, rectangle, line width=2pt, fill=blue!10, minimum height=3em, minimum width=3em, outer sep=0pt}}

\tikzset{blockMinus/.style={draw,minimum width=2em, minimum height=2em,line width=1pt,fill=blue!10,label=center:{$-1$}} }

\tikzset{sumcircle/.style={draw, circle, outer sep=0pt, label=center:{{$\sum$}}, minimum width=2em}}

\begin{document}
\begin{tikzpicture}
\node[block](Adam){Adam};
\node[sumcircle, left=10mm of Adam](sumA){};
\node[block, left = 10mm of sumA](Bertil){Bertil};
\node[sumcircle, left = 10mm of Bertil](sumB){};
\node[block,left=20mm of sumB,yshift=10mm](Cesar){Cesar};
\node[block,below=14mm of Bertil](David){David};
\node[blockMinus,below=6mm of sumB](minusA){};

\draw[->](Cesar.-30)--node{$AA$} ++(12mm,0)|-(sumB);
\draw[->](Cesar.30)--node{$BB$} ++(12mm,0) -|(sumA);
\draw[->](David)--node[swap,xshift=1mm]{$CC$}(David-|minusA)--(minusA);
\draw[->](minusA)--(sumB);
\draw[->](sumB)--(Bertil);
\draw[->](Bertil)--(sumA);
\draw[->](sumA)--node[xshift=-2mm](SS){}(Adam);
\draw[->](SS)|-(David.30);
\draw[->](Adam)--node[xshift=-5](O1){$YY$}++(20mm,0);
\draw[->](O1)|-(David.-30);
\draw[->](Cesar.west) ++(-15mm,0)--node[xshift=-5]{$RR$}(Cesar);

\draw[-,thin](Adam.center) ++(3mm,3mm)--++(8mm,8mm)node[above]{$XX$};
\end{tikzpicture}
\end{document}