welcome: please sign in
location: Diff for "Computer/Latex/BlockDiagramsTikZ/feedback0_tikz"
Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2014-10-04 16:15:31
Size: 860
Editor: leif
Comment:
Revision 3 as of 2018-02-17 16:51:16
Size: 976
Editor: leif
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
==== Feedback0 ==== ## page was renamed from BlockDiagrams/feedback0_tikz
==== feedback0 ====
Line 4: Line 5:
[[attachment:feedback0.tex|download feedback0.tex|&do=get]]

feedback0

../feedback0.png

download feedback0.tex

\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes,positioning}
\usetikzlibrary{narrow}
\begin{document}
\begin{tikzpicture}[auto, line width=1pt, >=narrow]
\tikzset{block/.style={draw, rectangle, line width=2pt, minimum height=3em, minimum width=3em, outer sep=0pt}}
\tikzset{sumcircle/.style={draw, circle, outer sep=0pt, label=center:{$\sum$}, minimum width=2em}}

\node[block](G1){$G_1$};
\node[block,below=6mm of G1](G2){$G_2$};
\node[sumcircle,left=7mm of G1](sum){};
\node[coordinate,left=13mm of sum](input){};
\node[coordinate,right=13mm of G1](output){};

\draw[->](input)--node[xshift=-2mm]{$R$}(sum);
\draw[->](sum)--(G1);
\draw[->](G1)--node(y)[]{$Y$}(output);
\draw[->](y)|-(G2){};
\draw[->](G2)-|(sum);
\end{tikzpicture}
\end{document}

Computer/Latex/BlockDiagramsTikZ/feedback0_tikz (last edited 2018-06-05 14:51:16 by leif)