Here is my code:
\documentclass[10pt]{article}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{bigints}
\usepackage[pdftex]{graphicx}
\graphicspath{{C:/Users/Sam/Desktop/PaperFigures/}}
\DeclareGraphicsExtensions{.pdf,.png}
\begin{document}
\begin{center}
Table 3. Voltage Loop Results
\linebreak
\begin{tabular}{| p{3cm} | p{2cm} | p{3cm} | l |}
\hline
Loop Equation & Experimental Value & Loop Description & Loop Figure \\ \hline
$-V_{E}+ V_{1} - V_{d} - V_{4} = 0$ & & Through battery, down right side of resistor
complex. Current Flow: $E \rightarrow R_{1} \rightarrow R_{d} \rightarrow R_{4}$ & \includegraphics[scale=0.2]{CircuitFigure3} \\ \hline
\end{tabular}
\end{center}
\end{document}
This is what is rendered:

Here is the .pdf of the image if you want to compile this yourself and check it out:
How can I change my code such that the text in the other columns (I realized just now my headers are in the wrong column but that does not matter) will be aligned with the top \hline after the column headers? Also, how can I make the text I write in the cells not stagger so that it fits the "best possible", which ends up looking ugly... I don't want to automatically space out like that.
I need to finish this lab report tonight, so if anyone can help it is greatly appreciated! Thank you!
EDIT: The problem has been solved!
.epsfigure, Harish might be right. The important box is the so-calledbounding box. Include it in your document somewhere else and see if the caption is further below than the lowest point of the figure. And please complete your code snippet to a copy-paste'ble and compilable code such that people can see if there is other issues related to loaded packages etc. – percusse Mar 12 '12 at 01:49\raisebox{-4cm}{ .... }and see if it is working for you. Also check out the solutions given for this question. Also you can change the first twop{3cm}to simplycfor auto sizing. – percusse Mar 12 '12 at 02:53