LaTex: Pictures in table, caption required -


i have pictures included in table:

\begin{tabular}[h]{|l|l|} \hline \includegraphics[scale=0.15]{seite10.eps}  & \raisebox{1,1cm}[1,1cm][0cm]{\includegraphics[scale=0.7]{seite24l.eps}}\\ \hline \end{tabular}\newline 

now want captions pictures. know \caption doesn't work out of float enviroment, tried \captionof instead, didn't work either. cannot write caption in cell of table, because in case figure wouldn't feature in table of figures want generate @ end of file.

i'm grateful hint....

to use \captionof load caption package , use inside environment minipage instance. might not work if used directly in simple table cell.

this example works, using p cell, \captionof called in parbox:

\documentclass{article} \usepackage[demo]{graphicx} \usepackage{caption} \begin{document} \listoftables  \bigskip \begin{tabular}[h]{|p{6cm}|l|} \hline \includegraphics[scale=0.15]{seite10.eps} \captionof{table}{test} & \raisebox{1,1cm}[1,1cm][0cm]{\includegraphics[scale=0.7]{seite24l.eps}}\\ \hline \end{tabular}\newline \end{document} 

Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -