I'm relatively new to Latex and I really appreciate this community, it has already helped me a lot. However, I've been unable to find the answer for the following problem:
I want to create a 3 columns and 5 rows. The first 3 rows in column 1 are merged, but the text isn't centered relative to column 2/3. Also the text in the last column isn't vertically centered. This is the code i'm using:
\documentclass[11pt,a4paper]{article}
\usepackage{multirow}
\usepackage{tabularx}
\usepackage{array}
\begin{document}
\noindent\begin{tabular}{|m{5cm}|m{5cm}|m{5cm}|}
\hline
\multirow{3}{*}{Temperature ($^\circ$C/K)} & Thermocouple & Depending on the experimental set-up, type-K,T or other is used\\[10ex] \cline{2-3}
& Resistor Thermal Device (RTD) & Usually a PT100 or PT1000\\[5ex] \cline{2-3}
& Thermistor & \\ \hline
\end{tabular}
\end{document}
Thanks for any tips and/or tricks!

-15ptcome from, I see you add 10ex+5ex vertical spaces. Did you just by manually adjustfixupparameter? I see two method to automatically set the vertical alignment, one is save the position in the first run, and read back and adjust the positon(http://tex.stackexchange.com/a/77984/24012), but still complex; The other method is http://tex.stackexchange.com/a/183178/24012, which also use tex primitives. – ollydbg23 Aug 25 '15 at 15:46-15ptwas a manual choice. – Andrew Swann Aug 25 '15 at 16:19