Wie kann ich bei einer Black-Box Darstellung Pfeile mit Text füllen?
Ich bin dabei mit tikz mir eine Black-Box Darstellung zu Basteln wie im Bild unten! Kann man mit tikz auch solche Pfeile wie im Bild zeichnen?
![alt text][1]
  [1]: http://texwelt.de/wissen/upfiles/Black-Box_2.png
Hier mein Beispielcode:
    \documentclass[margin=5pt]{standalone}
    
    \usepackage[ngerman]{babel}
    \usepackage[utf8]{inputenc}
    \usepackage{tikz}
    \usetikzlibrary{arrows}
    
    \begin{document}
    	\begin{tikzpicture}
    	    \draw (0,0) rectangle (6,4) node[pos=.5] {\Large\textbf{Black-Box}};
        % Eingangsgrößen
        	\draw[->, line width=1pt] (-3,0.5) -- (-0.5,0.5) node[above, midway, black]{Stoff};
        	\draw[->, line width=1pt] (-3,2) -- (-0.5,2) node[above, midway, black]{Energie};
        	\draw[->, line width=1pt] (-3,3.5) -- (-0.5,3.5)node[above, midway, black]{Signal};
        % Ausgangsgrößen
            	\draw[<-, line width=1pt] (9,0.5) -- (6.5,0.5) node[above, midway, black]{Stoff};
            	\draw[<-, line width=1pt] (9,2) -- (6.5,2) node[above, midway, black]{Energie};
            	\draw[<-, line width=1pt] (9,3.5) -- (6.5,3.5) node[above, midway, black]{Signal};
        \end{tikzpicture}
    \end{document}