Weitestgehend hatte ich eine ähnliche Idee wie Schweinebacke, vielleicht nicht ganz so elegant, aber es sieht finde ich gar nicht so schlecht aus. Bei der Gelegenheit habe ich deine Tabelle noch etwas überarbeitet:
Code:
\documentclass[12pt]{scrreprt}
\usepackage{multirow,tabularx}
\usepackage[ngerman]{babel}
\usepackage{graphicx}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[dvips,pdftex,top=0pt,bottom=-10pt,left=-10pt,right=0pt]{geometry}
\usepackage{calc}
\usepackage{booktabs}
%%%%%%%%%
%% Aus l2picfaq.pdf
% neuer Befehl: \includegraphicstotab[..]{..}
% Verwendung analog wie \includegraphics
\newlength{\myx} % Variable zum Speichern der Bildbreite
\newlength{\myy} % Variable zum Speichern der Bildhöhe
\newcommand\includegraphicstotab[2][\relax]{%
% Zusätzlich eingefügt:
\raisebox{\baselineskip}{
% Abspeichern der Bildabmessungen
\settowidth{\myx}{\includegraphics[{#1}]{#2}}%
\settoheight{\myy}{\includegraphics[{#1}]{#2}}%
% das eigentliche Einfügen
%\parbox[c][1.1\myy][c]{\myx}{%
% leicht abgeändert:
\parbox[t][1.1\myy][c]{\myx}{%
\includegraphics[{#1}]{#2}}}%
}% Ende neuer Befehl
%%%%%%%%%
\begin{document}
\setlength{\unitlength}{1cm}
\begin{picture}(21,29.7)(0.4,0)
\put(1,23.6){%
\raisebox{-\height}{
\begin{tabular}[t]{p{6cm}p{6cm}p{6cm}}
\toprule
%
Nummer &
\multicolumn{2}{>{\raggedright\arraybackslash}b{12cm+2\tabcolsep}}%
{Multicolumn bla bla bla bla bla bal bal bal bal s 2 mc bla bla bla bla bla bal bal bal bal s 2 mc bla bla}\\
\midrule
%
\includegraphicstotab[width=5cm]{Testbild}
Bild
&
\multicolumn{2}{l}{%
\begin{tabular}[t]{@{}>{\raggedright\arraybackslash}p{6cm+\tabcolsep}@{}p{6cm+\tabcolsep}@{}}
Text Vom Bild Text und mehr Text und nochmehr und damits nicht langweilig wir, noch etwas Text & DimensionBild \\
\cmidrule(r){1-1}
\cmidrule(r){2-2}
Pictos \linebreak\linebreak
bl abla bla bla
bla bal balb
alab alb abalobal
ablblblab baalal
alalalala alalalala
la al & Dummy
\end{tabular}%
} \\
\midrule %
& Text & Text \\
\bottomrule
%
\end{tabular}%
}}
\end{picture}
\end{document}
Lesezeichen