I have a very specific table that just needs to be this way (even though one might argue that it is not a very TeX kind of way).
The cell in the upper left is supposed to contain a logo and it fits nicely:
My question is how to achieve this without using pstricks' \rput command? If I just include the image, then TeX will reserve some space for it, which I don't want. The padding is fine just the way it is and \rput does not seem to appear to pass on any information about a bounding box.
\documentclass{article}
\usepackage{graphicx}
\usepackage{pstricks}
\usepackage{booktabs}
\begin{document}
\begin{table}\scriptsize
\begin{tabular}{@{}c@{}*{6}{l}@{}}
\specialrule{1pt}{0pt}{3pt}% toprule
% Row 1 ---
\hspace*{2cm}
& {Category}
& \multicolumn{2}{l}{Score}
& {Result}
& {Details}
& More detailed \\
% Row 2 ---
&&&&&&details
\\[-1.5ex]
% Row 3 ---
% \includegraphics[height=1.4cm]{scratch.eps}
\rput(0,0){\includegraphics[height=1.4cm]{scratch.eps}}%
& \small Some Category \\[1ex]
& \small Subcategory
& \multicolumn{2}{r}{of 30} \\
\specialrule{.7pt}{4pt}{3pt}% midrule ---
\end{tabular}
\end{table}
\end{document}
