I have an issue aligning images within a cell vertically. I played a lot with the parameter, but do not get the result I want. Below is my current approach (I hope the images can be accessed to recreate the minimal example):
\documentclass{scrreprt} %scrreprt
\usepackage{graphicx, booktabs}
\renewcommand{\arraystretch}{1.5}
\begin{document}
\begin{table}[h]
\centering
\begin{tabular}{|c|p{.1\textwidth}|p{.7\textwidth}|} %{.9\textwidth}
\hline
\textbf{Menu item}& \textbf{Caption}& \textbf{Description} \\
\hline
\includegraphics[scale=1]{security_unlock.png}& Login& Show the login screen, where the user should enter his credentials to log on to the system.\\
\hline
\includegraphics[scale=1]{security_lock.png}& Logoff& Log off the current user. A prompt will be shown where the user has to confirm the log off procedure.\\
\hline
\includegraphics[scale=1]{employees-gear.png}& Manage& Opens a formular where the user can manage the user groups and users.\\
\hline
\end{tabular}
\end{table}
\end{document}
As you can see in the result the images in the first column touch the frame of the cell. Moreover there is an ugly gap between the text and the top frame.
I use the package booktabs cause I found in a thread that this should help. Unfortunately it does not...
The example is compiled with xelatex.





