I am working on a table.
My problem is that the text in the column "Type" for instance is not vertical justified. In addition I have an extra line segment at the bottom of the very first cell.
\documentclass{article}
\usepackage{multirow}
\begin{document}
\begin{table}[htb]
\begin{center}
\begin{tabular}{|l|p{3cm}|p{5cm}|}
\cline{2-3}
\multicolumn{1}{c|}{} &Type & Criteria \\ \cline{2-3}
\hline
\hline
\multirow{3}{*}{Objective}
& {Shortest path (global, local) }& exits in sight range, signs, experience, \ldots \\ \cline{2-3}
& {Quickest path}& jam in sight range, experience,\ldots \\ \cline{2-3}
&Given path & directives from signs, personal,\ldots \\ \hline
\multirow{3}{*}{Subjective}
&Pleasant path & design, clarity, lighting, experience, emotional state, \\ \cline{2-3}
&Safest path & experience, overview, walking in group\ldots \\ \cline{2-3}
&Known path & experience, overview, (re) identification of signs,\ldots\\ \hline
\ldots &\ldots &\ldots \\ \hline
\end{tabular}
\end{center}
\caption{Examples of path types inside a facility and possible influencing criteria.}
\label{tab:path_types}
\end{table}
\end{document}

\documentclassand the appropriate packages (As @DavidCarlisle has already done for you in this case). – Peter Grill Apr 10 '12 at 15:42