I would be very grateful if anyone could help with my questions below. Here's my latex code:
\documentclass[12pt]{report}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{tikz}
\usetikzlibrary{arrows}
\usepackage{verbatim}
\begin{document}
\tikzstyle{int}=[draw, line width = 1mm, minimum size=8em]
\begin{figure}
\centering
\begin{tikzpicture}[node distance=4.5cm,auto,>=latex']
\node [int] (a) {};
\node (b) [left of=a,node distance=5cm, coordinate] {a};
\node [int] (c) [] {$S$};
\node [coordinate] (end) [right of=c, node distance=5cm]{};
\path[->] (b) edge node {$\gamma$} (a);
\draw[->] (c) edge node {$\psi$} (end) ;
\end{tikzpicture}
\caption{This is a single compartment model}
\end{figure}
\end{document}
I'm a very newbie to tikz and I've had a brief look at the 405-page document by Till Tantau. I have to say, I don't even know where to start. The above code was a template which I've managed to edit to produce the image seen. I don't quite understand what every single code is doing and I'm sure there are bits of codes that aren't needed here. I would like to introduce a loop with an arrow head below the box pointing back at the box (with a label on the arrow:"z"). I was also wondering if anyone could help with making the arrows bolder and perhaps bigger.
Alternatively, I would be grateful if anyone could direct me to exactly what page to read on the tikz documentation to answer these questions.
Thanks



arrows.metaand then see section 16.5 for options. – cfr Jan 01 '15 at 03:28