I want that just one of my columns cells have top padding. I tried :
\def\arraystretch{factor}%
but the result is not ideal. because I don't want all columns have the top padding.
is there anyway to specify top padding for cells of just one column?
Edit
I have a long table with 10 rows and 4 columns that the 4th column has image. this is my code (summarized with 3 columns ):
\begin{longtable}{|p{2cm}|p{3cm}|p{8cm}|p{2cm}|}
\caption{my caption}
\label{table:10.1}
\\
\hline
\centering titile 1 & \centering title 2 & \centering title 3 & {\centering title 4} \\
\hline \hline
first r first c & first r second c & first r third c &
\begin{minipage}{.12\textwidth}
\includegraphics[width=\linewidth]{table10-1-1.png}
\end{minipage}
\\
\hline
second r first c & second r second c & second r third c &
\begin{minipage}{.12\textwidth}
\includegraphics[width=\linewidth]{table10-1-2.png}
\end{minipage}
\\
\hline
third r first c & third r second d & third r third c &
\begin{minipage}{.12\textwidth}
\includegraphics[width=\linewidth]{table10-1-3.png}
\end{minipage}
\\
\hline
\end{longtable}
The result is like this:

I tried to get padding with {\renewcommand{\arraystretch}{4}% but the result in not good:

It would be fine if just cells of 4th column had padding.
anyway I have another problem in this table:
1- Text in the cells are justified and sometimes the space between the words are too much.
I will be thankful for any help.


mcolumn specifier instead ofp. – karlkoeller Dec 22 '14 at 20:53\raisebox. Could you provide a more comprehensive example though, since the question is very general at the moment... – Werner Dec 22 '14 at 20:55\label{variability_impl_mech}produces the two extra lines. You already have a label aftercaption. Do you need both labels? – Ignasi Dec 24 '14 at 08:33