How do I make a tikz rectangle node with given lower-left and upper-right corners, having a given border color and fill color? I know it seems like a basic question, but I cannot find an example in the manual! I tried this:
\documentclass[tikz,border=0.25cm]{standalone}
\begin{document}
\begin{tikzpicture}
\node [shape=rectangle, thin, color=red, fill=red, fill opacity=0.4, minimum width=0.5599999999999998, minimum height=3.3999999999999995, above right] (A) at (1.4000000000000001, -3.0999999999999996) {};
\end{tikzpicture}
\end{document}

\filldraw [draw=blue,fill=red] (0,0) rectangle (3,4);? – Torbjørn T. Feb 17 '14 at 22:00nodeI guess. You would have to use explicit coordinates (or a coordinate calculated from the corners) instead of referring to the node name. – Torbjørn T. Feb 17 '14 at 22:04